ContrastFilter2d
            Computes, for each pixel of a two-dimensional image, the contrast value of its neighborhood.
Access to parameter description
For an introduction:
		Access to parameter description
For an introduction:
- section Images Filtering.
 - section First Order Statistics Filters.
 
- A square with a half side length defined by the kernelRadius parameter,
 - A disk with a radius defined by the kernelRadius parameter.
 
Function Syntax
This function returns the outputImage output parameter.
                        
                    
// Function prototype.
std::shared_ptr< iolink::ImageView >
contrastFilter2d( std::shared_ptr< iolink::ImageView > inputImage,
                  ContrastFilter2d::KernelShape kernelShape,
                  uint32_t kernelRadius,
                  std::shared_ptr< iolink::ImageView > outputImage = NULL );
                    
This function returns the outputImage output parameter.
                        
                    
// Function prototype.
contrast_filter_2d( input_image,
                    kernel_shape = ContrastFilter2d.KernelShape.DISK,
                    kernel_radius = 3,
                    output_image = None )
                    
This function returns the outputImage output parameter.
                        
                
// Function prototype.
public static IOLink.ImageView
ContrastFilter2d( IOLink.ImageView inputImage,
                  ContrastFilter2d.KernelShape kernelShape = ImageDev.ContrastFilter2d.KernelShape.DISK,
                  UInt32 kernelRadius = 3,
                  IOLink.ImageView outputImage = null );
                    Class Syntax
Parameters
| Class Name | ContrastFilter2d | 
|---|
| Parameter Name | Description | Type | Supported Values | Default Value | |||||
|---|---|---|---|---|---|---|---|---|---|
![]()  | 
  inputImage    | 
 The input image. | Image | Binary, Label, Grayscale or Multispectral | nullptr | ||||
![]()  | 
  kernelRadius    | 
 The kernel half side length or radius, in pixels. In case of a square, a value N produces a square window of 2N+1 pixels side length. In case of a disk, a value N produces a disk with a 2N+1 pixels diameter. | UInt32 | >=1 | 3 | ||||
![]()  | 
  kernelShape    | 
 The shape of the window defining the neighborhood.
  | 
Enumeration | DISK | |||||
![]()  | 
  outputImage    | 
 The output image. Its dimensions are forced to the same values as the input. Its data type is forced to floating point. | Image | nullptr | |||||
Object Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); ContrastFilter2d contrastFilter2dAlgo; contrastFilter2dAlgo.setInputImage( polystyrene ); contrastFilter2dAlgo.setKernelShape( ContrastFilter2d::KernelShape::SQUARE ); contrastFilter2dAlgo.setKernelRadius( 3 ); contrastFilter2dAlgo.execute(); std::cout << "outputImage:" << contrastFilter2dAlgo.outputImage()->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif"))
contrast_filter_2d_algo = imagedev.ContrastFilter2d()
contrast_filter_2d_algo.input_image = polystyrene
contrast_filter_2d_algo.kernel_shape = imagedev.ContrastFilter2d.SQUARE
contrast_filter_2d_algo.kernel_radius = 3
contrast_filter_2d_algo.execute()
print( "output_image:", str( contrast_filter_2d_algo.output_image ) );
            
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" );
ContrastFilter2d contrastFilter2dAlgo = new ContrastFilter2d
{
    inputImage = polystyrene,
    kernelShape = ContrastFilter2d.KernelShape.SQUARE,
    kernelRadius = 3
};
contrastFilter2dAlgo.Execute();
Console.WriteLine( "outputImage:" + contrastFilter2dAlgo.outputImage.ToString() );
            Function Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); auto result = contrastFilter2d( polystyrene, ContrastFilter2d::KernelShape::SQUARE, 3 ); std::cout << "outputImage:" << result->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif"))
result = imagedev.contrast_filter_2d( polystyrene, imagedev.ContrastFilter2d.SQUARE, 3 )
print( "output_image:", str( result ) );
            ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" ); IOLink.ImageView result = Processing.ContrastFilter2d( polystyrene, ContrastFilter2d.KernelShape.SQUARE, 3 ); Console.WriteLine( "outputImage:" + result.ToString() );

