Blob search and binarization methods. More...
Static Public Member Functions | |
static BlobResult[] | BinarizeAndSearchAll (ImagePlane plane, int min, int max) |
Searches for all blobs in the given image plane . More... | |
static BlobResult[] | BinarizeAndSearchAll (ImagePlane plane, ValueRange< int > binarizationThreshold) |
Searches for all blobs in the given image plane . More... | |
static BlobResult[] | BinarizeAndSearchAllIn (ImagePlane plane, Rect aoi, int min, int max) |
Searches for all blobs in the given image plane 's aoi . More... | |
static BlobResult[] | BinarizeAndSearchAllIn (ImagePlane plane, Rect aoi, ValueRange< int > binarizationThreshold) |
Searches for all blobs in the given image plane 's aoi . More... | |
static BlobResult[] | BinarizeAndSearch (ImagePlane plane, int min, int max, BlobFilter filter) |
Searches for all blobs in the given plane satisfying the given filter . More... | |
static BlobResult[] | BinarizeAndSearch (ImagePlane plane, ValueRange< int > binarizationThreshold, BlobFilter filter) |
Searches for all blobs in the given plane satisfying the given filter . More... | |
static BlobResult[] | BinarizeAndSearchIn (ImagePlane plane, Rect aoi, ValueRange< int > binarizationThreshold, BlobFilter filter) |
Searches for all blobs in the given plane 's aoi satisfying the given filter . More... | |
static BlobResult[] | SearchAll (Image binarizedImage) |
Searches for all blobs in the given binarizedImage . More... | |
static BlobResult[] | Search (Image binarizedImage, BlobFilter filter) |
Searches for all blobs in the given binarizedImage satisfying the given filter . More... | |
Blob search and binarization methods.
|
static |
Searches for all blobs in the given plane satisfying the given filter .
plane | Image plane to process. |
min | Minimum gray value to be considered as an object (inclusive). |
max | Maximum gray value to be considered as an object (inclusive). |
filter | Filter which blobs are to be returned. |
|
static |
|
static |
Searches for all blobs in the given image plane .
plane | Image plane to process. |
min | Minimum gray value to be considered as an object (inclusive). |
max | Maximum gray value to be considered as an object (inclusive). |
|
static |
Searches for all blobs in the given image plane .
plane | Image plane to process. |
binarizationThreshold | Minimum and maximum gray values (inclusive) to be considered as an object. |
|
static |
Searches for all blobs in the given image plane 's aoi .
plane | Image plane to process. |
aoi | Region in which blobs are to be searched. |
min | Minimum gray value to be considered as an object (inclusive). |
max | Maximum gray value to be considered as an object (inclusive). |
|
static |
Searches for all blobs in the given image plane 's aoi .
plane | Image plane to process. |
aoi | Region in which blobs are to be searched. |
binarizationThreshold | Minimum and maximum gray values (inclusive) to be considered as an object. |
|
static |
Searches for all blobs in the given plane 's aoi satisfying the given filter .
plane | Image plane to process. |
aoi | Region in which blobs are to be searched. |
binarizationThreshold | Minimum and maximum gray values (inclusive) to be considered as an object. |
filter | Filter which blobs are to be returned. |
|
static |
Searches for all blobs in the given binarizedImage satisfying the given filter .
The binarizedImage is an DataTypes.Int8BppUnsigned image containing pixels with values 0 or 255. 255 marks an object.
binarizedImage | Image consisting only of 0 and 255 values. |
filter | Filter which blobs are to be returned. |
|
static |
Searches for all blobs in the given binarizedImage .
The binarizedImage is an DataTypes.Int8BppUnsigned image containing pixels with values 0 or 255. 255 marks an object.
binarizedImage | Image consisting only of 0 and 255 values. |