Difference between revisions of "Barrel Blob Finder"

From RoboJackets Wiki
Jump to navigation Jump to search
m (added image)
(added "See Also" section)
Line 12: Line 12:
 
* List of boundary rectangles for the barrels identified in the input image, in the coordinate space of the input image.
 
* List of boundary rectangles for the barrels identified in the input image, in the coordinate space of the input image.
 
** <tt>barrelBoundList : List<Rectangle></tt>
 
** <tt>barrelBoundList : List<Rectangle></tt>
 +
 +
== See Also ==
 +
* [[ImageFilterDemo]]

Revision as of 15:50, 16 November 2005

A barrel and its bounding box, as identified by BarrelBlobFinder

BarrelBlobFinder is an ImageFilterDemo filter that identifies orange/white construction barrels in an input image.

Input

  • Image whose pixels are in ARGB format.
    • width : int
    • height : int
    • pixels : int[]

Output

  • List of boundary rectangles for the barrels identified in the input image, in the coordinate space of the input image.
    • barrelBoundList : List<Rectangle>

See Also