Sunday, February 5, 2017

Template Matching using C# and Accord .Net

 In this post I am going to show "how to use ExhaustiveTemplateMatching feature is Accord.Net " to detect object i am image.So Lets create a new project and add reference  "Accord.Imaging" to your project.


Sunday, December 18, 2016

Motion Detection using C# and Accrod.Net

This blog shows how to perform Motion Detection using C# and Accord .Net.I assume you already installed accord .net in your system if not click here to know how to install and setup accord.net.Let's create a new new windows C# application project and add the following references to "Accord .Imaging.dll","Accord.Video.dll","Accord.Vision.dll","Accord.Video.Directshow.dll","Accord.dll".


Tuesday, January 13, 2015

Face Detection using Accord .Net

        Hi all in this blog i am going to show how to detect face from webcam live source using Accord .Net framework.The Accord Framework comes with predefined FaceHarrCascade() class that allows to detect the faces from the webcam without specifying external haar cascade for face detection.


Sunday, September 7, 2014

Image overlay using Pixel Filtering


In my previous blog I explained how to filter out the unwanted pixels using HSLFilter class.In this blog I am going to explain how to detect two colors at the same time. After extracting the colors based upon our needs we are going to overlay the image over those the colored rectangles(blobs).


Tuesday, September 2, 2014

Pixel Filtering using AForge .Net

This blog explains how to get the hue, saturation and luminance values of objects of our interest by filtering the unwanted pixels. To achieve this I am using HSLfilter class in the Aforge .Net framework.


Saturday, August 30, 2014

Object Detection using AForge .Net

Object Detection plays a very important role in image processing. This blog explains how to detect a basic Object (shapes) using by using BlobCounter and SimpleShapeChecker class.


Friday, August 22, 2014

Web Cam using AForge .NET

This blog explains how to get live feed from the webcam. By assuming that your already learned the "How to set up the Aforge.Net Visual studio 2010 setup tutorial" from my previous blog.


Wednesday, August 20, 2014

AForge .Net Visual Studio 2010 Setup Tutorial

AForge.NET is an open source C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, fuzzy logic, machine learning, robotics, etc (more).