Author: Neeni Bharti

Object Detection with YOLOv3 using Emgu.CV in C#

Introduction: Object detection is a fundamental task in computer vision, and YOLO (You Only Look Once) is a popular real-time object detection algorithm. In this blog, we will explore how to perform object detection using YOLOv3 in C# with the Emgu.CV library. We will build a simple application that can detect objects in real-time using […]

OpenCV in .Net

What Is Computer Vision? Computer vision mainly originated from the image processing field, and image processing comes from signal processing. It deals with creating and duplicating human vision using computer software and also hardware. OpenCV mainly concentrates on image processing, video capture, and analysis. It also includes features like object detection and face detection. Computer […]

Access Modifiers in C#

“Access Modifiers are keywords in C# which are used to restrict avaibility of object,method,class and its members into the program or in application”.These access modifiers are mainly used to define the scopes of types and members and prevent external programs from accidentally changing data. Types of Access Modifiers in C# – Public Access Modifier- The […]

LAMBDA EXPRESSION

Lambda Expressions A lambda expression is a short block of code which takes in parameters and returns a value.Lambda expressions are similar to methods, but they do not need a name and they can be implemented right in the body of a method.Lambda expressions are any expression that uses the operator =>, which we read […]

API & REST API

What is an API? Api is short for Application Programming Interface. It is used in computer programs to communicate with other applications and/or services.It acts as a bridge between different softwares and devices.Each time we use an app like Facebook or Instagram, send an instant message or check the weather on our phone, we use […]