go away spammer

Author Topic: Blob Detection  (Read 13645 times)

0 Members and 1 Guest are viewing this topic.

Offline legsmacgeeTopic starter

  • Beginner
  • *
  • Posts: 3
  • Helpful? 0
Blob Detection
« on: June 24, 2008, 09:46:04 AM »
 :-* Hello All,

I've been working on a blob detection program for live video in java.  At the moment, my blob detection algorithm is finicky at best.  The tutorial for blob detection and middle mass location looks good, but it seems like it can only look for blobs along one row of pixels.  It looks for groups of pixels within the threshhold on that one row, and then looks for new blobs on the next row.  It doesn't account for blobs that take up more than one row of pixels.  I've been trying to compensate for this by testing the pixels one row up and 5 columns right to see if it is within the threshold, and if it is, don't register as a new blob, but its not really working too well.  Can anyone give me a good method for what I am trying to do?  Is it just noise in the image that is giving me problems? (with one blob I'm registering hundreds)

Thanks!

--Legs
« Last Edit: June 24, 2008, 10:19:09 AM by legsmacgee »

Offline airman00

  • Contest Winner
  • Supreme Robot
  • ****
  • Posts: 3,650
  • Helpful? 21
  • narobo.com
    • Narobo.com - Mechatronics and related
Re: Blob Detection
« Reply #1 on: June 24, 2008, 10:39:07 AM »
have a look at roborealm , good image processing , maybe it will give you ideas or maybe you will just use that

search roborealm on google
Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com

Offline hgordon

  • Expert Roboticist
  • Supreme Robot
  • *****
  • Posts: 373
  • Helpful? 7
    • Surveyor Robotics Journal
Re: Blob Detection
« Reply #2 on: June 24, 2008, 10:40:50 AM »
Here's the blob detection source code used in CMUcam - you shouldn't have too much trouble converting from C to Java -

    http://www-2.cs.cmu.edu/~jbruce/cmvision/
Surveyor Corporation
  www.surveyor.com

Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: Blob Detection
« Reply #3 on: June 24, 2008, 11:39:49 AM »
well, is it greyscale frames?
anyways
you need to define a blob to build the appropriate algorithm
in your program i guess you are defining blob as this
(( more than n pixels that are all above some threshold and right after each other))
right? so u did build an algorithm on that basis
,,i guess you should know now what you wanna search for in a 2d image to build the algorithm
circle? rec? triangle? random blob? a more than 4 pixels by 4 pixels above threshold?
« Last Edit: June 24, 2008, 11:41:21 AM by benji »
good ol' BeNNy

Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: Blob Detection
« Reply #4 on: June 24, 2008, 11:44:04 AM »
Quote
  Is it just noise in the image that is giving me problems? (with one blob I'm registering hundreds)

tolerate 90% of pixels in the area to be above threshold and consider it a blob
good ol' BeNNy

Offline Admin

  • Administrator
  • Supreme Robot
  • *****
  • Posts: 11,703
  • Helpful? 173
    • Society of Robots
Re: Blob Detection
« Reply #5 on: July 03, 2008, 04:06:20 PM »
Sounds like you aren't sorting your matrix properly . . .

Just go through each pixel, run a binary threshold, then average the pixel locations above that threshold.

(but of course, this assumes there is only one blob . . . for more blobs, its more complicated)

Offline vidam

  • Supreme Robot
  • *****
  • Posts: 423
  • Helpful? 1
  • Robotronics.org
    • DC/MD/VA Robotics and Automation Team
Re: Blob Detection
« Reply #6 on: July 03, 2008, 07:45:47 PM »
Sounds like you aren't sorting your matrix properly . . .

Just go through each pixel, run a binary threshold, then average the pixel locations above that threshold.

(but of course, this assumes there is only one blob . . . for more blobs, its more complicated)

For more blobs with the same colors, you should use recursive region growing to encapsulate the whole blob  in a rectangular area.

 


Get Your Ad Here

data_list