SeparateObjectsByBlock
Separates connected objects in a binary image in a low memory consumption mode.
Access to parameter description
For an introduction:
It is based on a block-wise implementation of the watershed algorithm, building a graph allowing the propagation of the catchments areas through the entire image.
Note:
Access to parameter description
For an introduction:
- section Introduction To Watershed
- section Geodesic Transformations
It is based on a block-wise implementation of the watershed algorithm, building a graph allowing the propagation of the catchments areas through the entire image.
Note:
- This algorithm requires less free memory than the SeparateObjects algorithm but is much slower to execute.
- As the implementation is totally different, the results of both algorithms may differ slightly, especially on areas where the distance map generates some plateaus.
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > separateObjectsByBlock( std::shared_ptr< iolink::ImageView > inputBinaryImage, int32_t contrastValue, SeparateObjectsByBlock::OutputType outputType, SeparateObjectsByBlock::AlgorithmMode algorithmMode, int32_t blockSize, SeparateObjectsByBlock::Neighborhood neighborhood, std::shared_ptr< iolink::ImageView > outputImage = NULL );
Class Syntax
Parameters
Parameter Name | Description | Type | Supported Values | Default Value | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
inputBinaryImage |
The input binary image. | Image | Binary | nullptr | ||||||||||
![]() |
contrastValue |
The depth of the valley used to select the markers of the watershed. | Int32 | >=0 | 4 | ||||||||||
![]() |
outputType |
The type of result image.
|
Enumeration | SEPARATED_OBJECTS | |||||||||||
![]() |
algorithmMode |
The mode for applying the watershed algorithm.
|
Enumeration | REPEATABLE | |||||||||||
![]() |
blockSize |
The size of blocks used to crop the input images. | Int32 | >=32 | 256 | ||||||||||
![]() |
neighborhood |
The 3D neighborhood configuration. This parameter is ignored with a 2D input image.
|
Enumeration | CONNECTIVITY_26 | |||||||||||
![]() |
outputImage |
The output binary or label image. Its dimensions are forced to the same values as the input image. Its type depends on the outputType parameter. | Image | nullptr |
Object Examples
auto polystyrene_sep = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene_sep.vip" ); SeparateObjectsByBlock separateObjectsByBlockAlgo; separateObjectsByBlockAlgo.setInputBinaryImage( polystyrene_sep ); separateObjectsByBlockAlgo.setContrastValue( 4 ); separateObjectsByBlockAlgo.setOutputType( SeparateObjectsByBlock::OutputType::SEPARATED_OBJECTS ); separateObjectsByBlockAlgo.setAlgorithmMode( SeparateObjectsByBlock::AlgorithmMode::REPEATABLE ); separateObjectsByBlockAlgo.setBlockSize( 256 ); separateObjectsByBlockAlgo.setNeighborhood( SeparateObjectsByBlock::Neighborhood::CONNECTIVITY_26 ); separateObjectsByBlockAlgo.execute(); std::cout << "outputImage:" << separateObjectsByBlockAlgo.outputImage()->toString();
Function Examples
auto polystyrene_sep = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene_sep.vip" ); auto result = separateObjectsByBlock( polystyrene_sep, 4, SeparateObjectsByBlock::OutputType::SEPARATED_OBJECTS, SeparateObjectsByBlock::AlgorithmMode::REPEATABLE, 256, SeparateObjectsByBlock::Neighborhood::CONNECTIVITY_26 ); std::cout << "outputImage:" << result->toString();