Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Source Code

Source Code

Scheduled Pinned Locked Moved C#
csharpdatabaseregextutorial
4 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Member 10544576
    wrote on last edited by
    #1

    How to match image stored in database with captured image using webcam in c#.net

    L R B 3 Replies Last reply
    0
    • M Member 10544576

      How to match image stored in database with captured image using webcam in c#.net

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      See https://www.google.com/search?q=image+compare[^].

      1 Reply Last reply
      0
      • M Member 10544576

        How to match image stored in database with captured image using webcam in c#.net

        R Offline
        R Offline
        Raj Mouli
        wrote on last edited by
        #3

        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

        1 Reply Last reply
        0
        • M Member 10544576

          How to match image stored in database with captured image using webcam in c#.net

          B Offline
          B Offline
          Bernhard Hiller
          wrote on last edited by
          #4

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

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups