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.