Processing math: 100%
ImageDev

IsolatedPoints2d

Point detector selecting object made up of a single point in a two-dimensional binary image.

Access to parameter description

For an introduction: The isolated points of a binary image are found by performing a HMT transformation with the following configuration: 000010000
See also

Function Syntax

This function returns outputBinaryImage.
// Function prototype
std::shared_ptr< iolink::ImageView > isolatedPoints2d( std::shared_ptr< iolink::ImageView > inputBinaryImage, std::shared_ptr< iolink::ImageView > outputBinaryImage = NULL );

Class Syntax

Parameters

Parameter Name Description Type Supported Values Default Value
input
inputBinaryImage
The binary input image. Image Binary nullptr
output
outputBinaryImage
The binary output image. Its size and type are forced to the same values as the input. Image nullptr

Object Examples

auto polystyrene_sep = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene_sep.vip" );

IsolatedPoints2d isolatedPoints2dAlgo;
isolatedPoints2dAlgo.setInputBinaryImage( polystyrene_sep );
isolatedPoints2dAlgo.execute();

std::cout << "outputBinaryImage:" << isolatedPoints2dAlgo.outputBinaryImage()->toString();

Function Examples

auto polystyrene_sep = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene_sep.vip" );

auto result = isolatedPoints2d( polystyrene_sep );

std::cout << "outputBinaryImage:" << result->toString();