Blob search and binarization methods.
More...
|
static BlobResult[] | BinarizeAndSearchAll (ImagePlane plane, int min, int max) |
| Searches for all blobs in the given image plane .
|
|
static BlobResult[] | BinarizeAndSearchAll (ImagePlane plane, ValueRange< int > binarizationThreshold) |
| Searches for all blobs in the given image plane .
|
|
static BlobResult[] | BinarizeAndSearchAllIn (ImagePlane plane, Rect aoi, int min, int max) |
| Searches for all blobs in the given image plane 's aoi .
|
|
static BlobResult[] | BinarizeAndSearchAllIn (ImagePlane plane, Rect aoi, ValueRange< int > binarizationThreshold) |
| Searches for all blobs in the given image plane 's aoi .
|
|
static BlobResult[] | BinarizeAndSearch (ImagePlane plane, int min, int max, BlobFilter filter) |
| Searches for all blobs in the given plane satisfying the given filter .
|
|
static BlobResult[] | BinarizeAndSearch (ImagePlane plane, ValueRange< int > binarizationThreshold, BlobFilter filter) |
| Searches for all blobs in the given plane satisfying the given filter .
|
|
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 .
|
|
static BlobResult[] | SearchAll (Image binarizedImage) |
| Searches for all blobs in the given binarizedImage .
|
|
static BlobResult[] | Search (Image binarizedImage, BlobFilter filter) |
| Searches for all blobs in the given binarizedImage satisfying the given filter .
|
|
Blob search and binarization methods.
◆ BinarizeAndSearch() [1/2]
Searches for all blobs in the given plane satisfying the given filter .
- Parameters
-
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. |
- Returns
- Unordered blob results.
◆ BinarizeAndSearch() [2/2]
Searches for all blobs in the given plane satisfying the given filter .
- Parameters
-
plane | Image plane to process. |
binarizationThreshold | Minimum and maximum gray values (inclusive) to be considered as an object. |
filter | Filter which blobs are to be returned. |
- Returns
- Unordered blob results.
◆ BinarizeAndSearchAll() [1/2]
Searches for all blobs in the given image plane .
- Parameters
-
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). |
- Returns
- Unordered blob results.
◆ BinarizeAndSearchAll() [2/2]
static BlobResult[] BinarizeAndSearchAll |
( |
ImagePlane | plane, |
|
|
ValueRange< int > | binarizationThreshold ) |
|
static |
Searches for all blobs in the given image plane .
- Parameters
-
plane | Image plane to process. |
binarizationThreshold | Minimum and maximum gray values (inclusive) to be considered as an object. |
- Returns
- Unordered blob results.
◆ BinarizeAndSearchAllIn() [1/2]
Searches for all blobs in the given image plane 's aoi .
- Parameters
-
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). |
- Returns
- Unordered blob results.
◆ BinarizeAndSearchAllIn() [2/2]
Searches for all blobs in the given image plane 's aoi .
- Parameters
-
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. |
- Returns
- Unordered blob results.
◆ BinarizeAndSearchIn()
Searches for all blobs in the given plane 's aoi satisfying the given filter .
- Parameters
-
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. |
- Returns
- Unordered blob results.
◆ Search()
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.
- Parameters
-
binarizedImage | Image consisting only of 0 and 255 values. |
filter | Filter which blobs are to be returned. |
- Returns
- Unordered blob results.
◆ SearchAll()
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.
- Parameters
-
binarizedImage | Image consisting only of 0 and 255 values. |
- Returns
- Unordered blob results.