Rank Convolution Operations
[Image Processing]
Detailed Description
- All the rank convolution use the same base function. Near the border the base function includes only the real image pixels in the rank. No border extensions are used.
- See im_process_loc.h
Functions | |
int | imProcessMedianConvolve (const imImage *src_image, imImage *dst_image, int kernel_size) |
int | imProcessRangeConvolve (const imImage *src_image, imImage *dst_image, int kernel_size) |
int | imProcessRankClosestConvolve (const imImage *src_image, imImage *dst_image, int kernel_size) |
int | imProcessRankMaxConvolve (const imImage *src_image, imImage *dst_image, int kernel_size) |
int | imProcessRankMinConvolve (const imImage *src_image, imImage *dst_image, int kernel_size) |
Function Documentation
|
Rank convolution using the median value. |
|
Rank convolution using (maximum-minimum) value. |
|
Rank convolution using the closest maximum or minimum value. |
|
Rank convolution using the maximum value. |
|
Rank convolution using the minimum value. |