Histogram - Similarity is defined as the color histogram of difference of two blobs. I.e. a blob in the current image with the same color distribution as a blob in the previous image means they are similar.
4. Match Threshold - Specify the match similarity threshold which defines if a successful
match is made between a current blob and a blob in the last image. If the similarity score
between the blobs is above the threshold then the match is made, otherwise the blob is
considered to be new and not connected to a previous blob.
5. Precision - When tracking a blob an array of a blobs position is noted. The precision defines
how many samples are added to the trail of blob positions. Increasing the precision will shorten
the blob's trail list and remove smaller movements caused be noise. Decreasing the precision
will increase the length of the blob's trail. See the variables list below ...
6. Present After Frames - To avoid having blobs that appear momentary to being treated as
an active blob the Present After Frames number will require a blob to be present for X number of
frames in order to be declared present and start being tracked.
7. Present After Pixel - To avoid stable blobs that do not move from bring tracked the Present
After Pixels number prevents blobs that remain within X number of pixels from their first location
from being tracked. Thus if you use 10 then any blob needs to move more than 10 pixels (relative
to their center) in order for the blob to start being tracked.
8. Absent After Frames - When tracking a blob it might suddenly disappear due to
a momentary glitch or image disturbance. It is very desirable not to have the
blob be reassigned a new id just due to a quick disappearance. The Absent frame number
provides a way for a blob to be remembered for a couple of frames in order to
allow the blob to be reacquired and retain its current id. By setting the number higher than zero
you allow the module to remember blobs in previous frames in hope to preserve the id. Setting the
number too high may cause blobs to stay in memory around for too long a time and then be
reassigned to new blobs appearing close to the departure point of a previous blob.
9. Graphic Color - The color of the overlaid id and trail (connecting blob arrow).
10. Display Trail - If you want to see how a blob has moved in previous frames select the
Display Trail checkbox which will enable that graphic to show.
11. Trail Length - Select how many samples you want the trail length to be. The longer the trail
the further in the past the blob's position can be seen.
12. Display Blob Id - Each tracked blob is provided a unique id that identifies that blob
from image to image. This id can be displayed ontop of each blob for viewing purposes.
13. Font Size - Select the font size of the displayed blob id.
14. Display As Annotation - Select if you want the graphics to be draw after all processing has been
completed. If this is NOT selected then the next module in the processing pipeline will see the graphic as if
it were part of the image and process it accordingly.
Notes
1. There is a maximum limit of 100 tracked positions. I.e. a trail cannot be more than 100 samples.
2. There is a maximum blob tracking count of 8192. If you have more than 100 blobs in the current image
you will need to reduce that number down by either filtering the image or increasing the segmentation
amount.
Example
| Blob_Tracking after movement detection on Freeway |
 |
Variables
Each new image will create a bunch of variables that reflect the current tracking status. There
are two types, blobs that are currently being tracked and those that have stopped tracking (most
likely the blob is no longer present in the image). All the following are arrays that contain
the current tracking state. Use the Watch Variable module to see these being
created and modified per image.
BLOB_TRACKING_IDS - an array of ids that are currently being tracked
BLOB_TRACKING_Z - for each id being tracked a variable holding an array of
past COGs is created
BLOB_TRACKING_Z_X - the current X coordinate for the Z blob being tracked
BLOB_TRACKING_Z_Y - the current Y coordinate for the Z blob being tracked
BLOB_TRACKING_LOST_IDS - contains an array of ids that stopped tracking. I.e.
a blob being tracked has suddenly disappeared.
BLOB_TRACKING_LOST_X - for each lost id a variable hold an array of past COGs
is created.
See Also
Flood_Fill
Auto_Threshold
Segment_Colors
Reduce_Colors
Blob_Filter
| "Blob_Tracking" Forum Posts | Last post | Posts | Views |
blob identification
Halo!
I have a problem.
I can not understand why are blobs numbered/ordered in order of the Y- posit... |
25 days |
7 |
228 |
aerial imaging shape tracking
currenly im working on canset image viewing with is aerial images..i want to know..how can i detect a shape such a rectangular b... |
6 months |
4 |
325 |
Tracking Multiple Objects
How could I track multiple circles that are the same color? Also.. Can I use vectors in roborealm, example: to measure the dista... |
7 months |
2 |
379 |
Croquet ball positioning
Hi!
I am investigating the feasability of a croquet ball positioning system for an annual tournamen... |
7 months |
2 |
310 |
Blob tracking module MISSING!
I have had RoboRealm for almost a year but only just started using it. I was looking at the Blob section of the modules and thou... |
7 months |
5 |
450 |
VBScript saving to file help
Hi I wonder if someone with more experience than I have in VBScript could help me.
I'm tracking mu... |
8 months |
3 |
473 |
Using Blob Tracking module for image match?
Hello,
I'm not sure if this is possible but it seems it might be. Suppose a cat moves i... |
8 months |
3 |
598 |
Multiple object tracking
Is it possibile to use RoboRealm to track two objects (blobs) simultaneously? I see that you can label a blob but cant q... |
10 months |
26 |
3995 |