Difference between revisions of "Bee counter software"

From HiveTool
Jump to: navigation, search
(Summary)
(Summary)
Line 16: Line 16:
 
Processing steps for each frame:
 
Processing steps for each frame:
 
#Convert image to grey scale.
 
#Convert image to grey scale.
#Threshold based on grey value.
+
#Threshold based on grey value. Result is binary image where dark areas are 0s and light areas are 1s.
 +
#Invert threshold image so bees that were black (0) are now white (1).
 
#Filter to smooth the noise. (The exact process changes from version to version but currently:
 
#Filter to smooth the noise. (The exact process changes from version to version but currently:
 
##[http://docs.opencv.org/doc/tutorials/imgproc/erosion_dilatation/erosion_dilatation.html Erode] the threshold image twice to remove legs, etc and try to separate the bees.
 
##[http://docs.opencv.org/doc/tutorials/imgproc/erosion_dilatation/erosion_dilatation.html Erode] the threshold image twice to remove legs, etc and try to separate the bees.

Revision as of 01:24, 21 March 2015

beeTrack1
Threshold image.
Filtered (smothed) threshold image.
Show contours
Show contours and tracks.
Same but input image is off
White track has terminated in green area and will count as out

Summary

beeTrack1 is a c++ program using openCV libraries. Here is an example of it processing video:

http://hivetool.org/counter/beeTrack1_2.mp4

Processing steps for each frame:

  1. Convert image to grey scale.
  2. Threshold based on grey value. Result is binary image where dark areas are 0s and light areas are 1s.
  3. Invert threshold image so bees that were black (0) are now white (1).
  4. Filter to smooth the noise. (The exact process changes from version to version but currently:
    1. Erode the threshold image twice to remove legs, etc and try to separate the bees.
    2. Blur the image to smoth it.
  5. Draw a color contour around each object and color code it based on size (area).
  6. Check each existing track to see if one falls within a contour of an object.
  7. If so, append the center coordinates of the object to the track. If not, start a new track.
  8. When the track ends, increment the IN or OUT counter depending on where the track starts, ends and length.

Note that these contour and track colors are based on the area of the contours. The number of bees is estimated by dividing the contour area by an arbitrary bee size. The actual number of bees depends on how tight the group of bee is and settings that affect the size of the contours.

NumberColor
1 beeBrown
2 beesOrange
3 beesYellow
4 beesBlue
5 beesViolet

Background

Open Computer Vision ([[1]]) is an open source computer vision and machine learning software library. The library has more than 2500 optimized algorithms, which includes a comprehensive set of both classic and state-of-the-art computer vision and machine learning algorithms.

Kyle Hounslow has posted several YouTube videos on using openCV for motion tracking:


https://www.youtube.com/watch?v=X6rPdRZzgjg


Note that what most videos call tracking, is really just object identification. Tracking the object from frame to frame is trivial if there is only one object, but becomes harder and more error prone if there are multiple objects, especially if they can touch or occlude each other.