Source Code
-
How to match image stored in database with captured image using webcam in c#.net
-
How to match image stored in database with captured image using webcam in c#.net
-
How to match image stored in database with captured image using webcam in c#.net
private void button1_Click_1(object sender, EventArgs e) { List images = new List() { "GreyA.png", "YellowA.png", "AOutline.png" }; AForge.Imaging.Filters.Edges filter = new AForge.Imaging.Filters.Edges(); foreach (var filename in images) { Bitmap b = new Bitmap(Image.FromFile(Path.Combine(Application.StartupPath, "images", filename))); Bitmap filteredBitmap = b.Clone() as Bitmap; PictureBox pb = new PictureBox(); pb.SizeMode = PictureBoxSizeMode.AutoSize; pb.Image = b; flowLayoutPanel1.Controls.Add(pb); pb = new PictureBox(); // apply the filter filter.ApplyInPlace(filteredBitmap); pb.SizeMode = PictureBoxSizeMode.AutoSize; pb.Image = filteredBitmap; flowLayoutPanel1.Controls.Add(pb); } } for more info visit- http://stackoverflow.com/questions/14128847/image-matching-algorithm-in-c-sharp[^]
Mouli
-
How to match image stored in database with captured image using webcam in c#.net
Also be a little more specific: what's the purpose of that comparison? Find out that the person is really John Doe, find out who the person is (oh that's really something totally different, do you understand that?), identify object types by their (fixed) shape at different angles, etc...