Back to FabImage Library Lite website
You are here: Start » Image Local Transforms
Image Local Transforms
Select a function from the list below.
Icon | Name | Description |
---|---|---|
![]() | DilateAndErodeImage | Calculates dilation and erosion simultaneously for faster execution. |
![]() | DilateImage | Replaces each pixel with the maximum of pixels within a kernel. |
![]() | ErodeImage | Replaces each pixel with the minimum of pixels within a kernel. |
![]() | GradientMagnitudeImage | Measures the strength of gradient at each pixel location with Sobel or Prewitt operator. |
![]() | SmoothImage_Gauss | Removal of gaussian noise from images. |
![]() | SmoothImage_Mean | Usually used for computing features related to local image "windows". Can be also used for noise removal, but Gauss is superior here. |
![]() | SmoothImage_Median | Edge-preserving noise removal (but slow). |
![]() | SmoothImage_Middle | Useful for calculating per-pixel threshold values for image binarization. |