ImageDev

KurtosisFilter2d

Computes, for each pixel of a two-dimensional image, the kurtosis value of its neighborhood.

Access to parameter description

For an introduction: This algorithm replaces each pixel of the output image by the kurtosis value of its neighborhood in the input image. The kurtosis operator is given by: $$ kurtosis=\frac{\sum\limits_{n}(n-m)^4\cdot p(n)}{\sigma^4}-3 $$ Where $m$ and $\sigma$ are respectively the mean and the standard deviation of the neighborhood.

The shape of the neighborhood can be: See also

Function Syntax

This function returns the outputImage output parameter.
// Function prototype.
std::shared_ptr< iolink::ImageView >
kurtosisFilter2d( std::shared_ptr< iolink::ImageView > inputImage,
                  KurtosisFilter2d::KernelShape kernelShape,
                  uint32_t kernelRadius,
                  std::shared_ptr< iolink::ImageView > outputImage = NULL );
This function returns the outputImage output parameter.
// Function prototype.
kurtosis_filter_2d( input_image,
                    kernel_shape = KurtosisFilter2d.KernelShape.DISK,
                    kernel_radius = 3,
                    output_image = None )
This function returns the outputImage output parameter.
// Function prototype.
public static IOLink.ImageView
KurtosisFilter2d( IOLink.ImageView inputImage,
                  KurtosisFilter2d.KernelShape kernelShape = ImageDev.KurtosisFilter2d.KernelShape.DISK,
                  UInt32 kernelRadius = 3,
                  IOLink.ImageView outputImage = null );

Class Syntax

Parameters

Class Name KurtosisFilter2d

Parameter Name Description Type Supported Values Default Value
input
inputImage
The input image. Image Binary, Label, Grayscale or Multispectral nullptr
input
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
input
kernelShape
The shape of the window defining the neighborhood.
SQUARE The sliding window is a square.
DISK The sliding window is a disk.
Enumeration DISK
output
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" );

KurtosisFilter2d kurtosisFilter2dAlgo;
kurtosisFilter2dAlgo.setInputImage( polystyrene );
kurtosisFilter2dAlgo.setKernelShape( KurtosisFilter2d::KernelShape::SQUARE );
kurtosisFilter2dAlgo.setKernelRadius( 3 );
kurtosisFilter2dAlgo.execute();

std::cout << "outputImage:" << kurtosisFilter2dAlgo.outputImage()->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif"))

kurtosis_filter_2d_algo = imagedev.KurtosisFilter2d()
kurtosis_filter_2d_algo.input_image = polystyrene
kurtosis_filter_2d_algo.kernel_shape = imagedev.KurtosisFilter2d.SQUARE
kurtosis_filter_2d_algo.kernel_radius = 3
kurtosis_filter_2d_algo.execute()

print( "output_image:", str( kurtosis_filter_2d_algo.output_image ) );
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" );

KurtosisFilter2d kurtosisFilter2dAlgo = new KurtosisFilter2d
{
    inputImage = polystyrene,
    kernelShape = KurtosisFilter2d.KernelShape.SQUARE,
    kernelRadius = 3
};
kurtosisFilter2dAlgo.Execute();

Console.WriteLine( "outputImage:" + kurtosisFilter2dAlgo.outputImage.ToString() );

Function Examples

std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" );

auto result = kurtosisFilter2d( polystyrene, KurtosisFilter2d::KernelShape::SQUARE, 3 );

std::cout << "outputImage:" << result->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif"))

result = imagedev.kurtosis_filter_2d( polystyrene, imagedev.KurtosisFilter2d.SQUARE, 3 )

print( "output_image:", str( result ) );
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" );

IOLink.ImageView result = Processing.KurtosisFilter2d( polystyrene, KurtosisFilter2d.KernelShape.SQUARE, 3 );

Console.WriteLine( "outputImage:" + result.ToString() );