Hi ! NET is in anniversary mode, so I think it will be a good idea to share some camera samples in C#. For these demos I’m using C# 6 and OpenCVSharp as OpenCV wrapper for .NET. Today post: detect a face using a DNN model and blur the face area. This demo also show…… Continue reading #OpenCV – Detect and blur faces π using DNN in C#
Tag: CSharp
#OpenCV – Detect and blur faces π using haar cascades in C#
Hi ! NET is in anniversary mode, so I think it will be a good idea to share some camera samples in C#. For these demos I’m using C#, NET 6 and OpenCVSharp as OpenCV wrapper for .NET. Today post: detect a face using haar cascades and blur the face area. This demo also show…… Continue reading #OpenCV – Detect and blur faces π using haar cascades in C#
#GitHubCopilot π€ – General experience with C#, generating unit tests, security keys and more.
Hi ! I used mostly Copilot with Python, and I have to admit that it generates super accurate Machine Learning and TensorFlow code. I don’t to a lot of C# code in Visual Studio Code, I’m old school I use Visual Studio 2022 for C#. However, I decided to give it a try and here…… Continue reading #GitHubCopilot π€ – General experience with C#, generating unit tests, security keys and more.
#Net5 – C#9 “records” and “deconstruction” super cool feature πππ
Hi ! I’m still learning about C#9, and there is a lot to learn about records. And, between all this information, I Just learn a super cool feature related to records: deconstruction. Let’s start with a simple record definition for a pet. This one includes pet’s name and pet’s age: public record Pet { public…… Continue reading #Net5 – C#9 “records” and “deconstruction” super cool feature πππ
#Net5 – C#9 “Init-only properties” are super cool πππ
Hi ! So this one does not fit in the line “readability improvement”, however is a nice step in order to write cleaner code. Yes, I know that doesn’t make sense, let me try to explain. Let’s start with a simple class with 2 properties. Interesting enough the property Age has a new accessor [init]…… Continue reading #Net5 – C#9 “Init-only properties” are super cool πππ
#Net5 – C#9 logical operators “is” and “is not” are super cool πππ
Hi ! In the line of good features, that are also nice to read, the new use of is and is not is a huge improvement in readability. As usual, old school validation for objects and types: // old school if(!(testObj is MyClass)) {…} And now, we can type the validation with some style: //…… Continue reading #Net5 – C#9 logical operators “is” and “is not” are super cool πππ
#Net5 – C#9 target-typed new expressions are super cool πππ
Hi ! I know I’m late to the party here, however I’m still enjoying some of the new C# 9 features a lot. I just realized that now, I can create objects in a different way, which is still super clear to read. Disclaimer: some of the new features are cool, however my gut told…… Continue reading #Net5 – C#9 target-typed new expressions are super cool πππ
#Podcast – NTN 76 – Feliz AΓ±o Nuevo π con todas las novedades de #Net5 !
Buenas! Feliz AΓ±o Nuevo πππ, empezamos el aΓ±o dando un repaso a todas las novedades de Net 5 con el gran amigo Miguel Teheran. Comentamos un poco la historia de Net y como Net 5 es el primer paso para la unificaciΓ³n de todos los .Net Frameworks que conocemos. TambiΓ©n hablamos un poco de los…… Continue reading #Podcast – NTN 76 – Feliz AΓ±o Nuevo π con todas las novedades de #Net5 !
#Net5 – C#9 “records”, “with” and “this”, a super cool mix πππ
Hi ! Our next podcast episode is focused on .Net 5. We had an amazing chat around a lot of features, and of course, C# 9 was part of the conversation. I got this amazing post [C# 9.0: Records β Work With Immutable Data Classes] from Tomas Huber, in my reading notes and working with…… Continue reading #Net5 – C#9 “records”, “with” and “this”, a super cool mix πππ
#AI – #Lobe, exporting to ONNX, and running in C# #csharp @lobe_ai
Hi ! Follow up post after yesterday post on Lobe, and today focusing on ONNX and C# code. And, it all started because someone asked in twitter about an ETA to export the model to ONNX https://twitter.com/Niels9001/status/1321333781618446337?s=20 I decided to give a try to the TensorFlow to Onnx tool, and it worked great ! (see…… Continue reading #AI – #Lobe, exporting to ONNX, and running in C# #csharp @lobe_ai