Thursday, October 2, 2014

Document Manger with QR

Hi this blog is about managing document with qr code.I created this application to help myself to get the quick glimpse of the important concepts while i read a book.In my previous blog i shown how  to create a qr code and how to read a value form a qr code in c# using Qr code library.


Friday, September 26, 2014

Send Email from c#

 This blog shows how to send email from C# using various protocols available in the .Net framework.The System.Net and System.Net.Sockets are the two namespaces used for managed implementation of internet protocols that application can use to send and receive data over the internet.


Friday, September 19, 2014

Qr code Generator with c#


QR code (abbreviated from Quick Response Code) is first designed for the  automotive industry in Japan. A barcode is a machine-readable optical label that contains information about the item to which it is attached. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte / binary) to efficiently store data.


Sunday, September 14, 2014

OCR with c#


This blog shows how to perform Optical character recognition (ocr) with c# for that we need a tessnet2 .net assembly. It is a c# wrapper class of the tesseract that exposes very simple methods to do ocr.


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).