After completing this lesson, learners should be able to:
Understand the basic principle of a neighborhood filter.
Apply basic neighborhood filters to an image.
Motivation
Images are quite often noisy or have other issues that make them hard to segment, e.g. by means of a simple intensity threshold. Neighborhood filters are often used to enhance the images in order to facilitate better performance of segmentation algorithms.
Image filtering with a pixel neighborhood. (a) Raw intensity image with pixel neighborhood (structuring element (SE), outer green box) and central pixel (inner orange box) on which the filtering operation will be performed. (b) Pixel values in the neighborhood. (c) X is the value that would be replaced after operation (indicated as op). Here, max, mean and variance operations are used. Note - One has to carefully look at the data type of the image as some operations can produce large/floating point values. (d) Different SEs (neighborhood in green and affected pixel in orange) top left - SE completely inside image boundaries; top right - SE at image boundaries (padding needed); bottom left - SE with different shape; bottom right - Line SE.
Neighborhood filters comprise two ingredients: a definition of the pixel neighborhood (size and shape) and a mathematical recipe what to compute on this neighborhood.
The result of this computation will be used to replace the value of the central pixel in the neighborhood. This procedure can be applied to several (all) pixels of an image to obtain a filtered image. The animation shows a square neighborhood (3x3) applied to the inner pixels of the image.
There are tons of different neighborhood filters, and you can also invent one!
The neighborhoods
The neighborhood of a pixel is also called a structuring element (SE) and can have various sizes and shapes.
Here, we use one of the simplest and most widely used neighborhoods, namely a circular neighborhood, which is defined by a certain radius. We will explore other shapes of SEs in more detail in a dedicated module.
Padding
Since the filtering operation takes into account all the directions of extent of SE, border pixels would be affected in a different way and one has to decide that which values they should assume. Padding is the operation of adding an additional layer around your data to get more accurate values after filtering process. It also gives you option to retain same dimensions for your data after filtering. Common padding methods are using zeros or to mirror/replicate the border pixel values.
The math
There are many ways how to cleverly compute on a pixel neighborhood. For example, one class of computations is called convolutional filters, another is called rank filters. Here, we focus on the relatively simple mean and variance filters.
Best practice
As usual, everything depends one the scientific question, but maybe one could say to use a filter that changes the image as little as possible.
It is helpful to first duplicate the image: [Image > Duplicate…] or [Ctrl-Shift-D]
Title = mean_1
Apply a mean filter to the image such that you can binarize the image into exactly three disjoint foreground regions (the three nuclei). The resulting mask should look like xy_8bit_binary__nuclei_very_noisy.tif
[Process > Filters > Mean…]
Radius = 1 pixels
[Image > Adjust > Threshold…]
Dark Background
Lower threshold level = 31
Higher threshold level = 255
Press Set
Press Apply
[Image > Lookup Tables > Invert LUT]
Repeat the procedure with radii = 2, 5, 7
What is the smallest size for the mean filter that does the job?
Radius = 2 pixels and Lower threshold level = 30 (other values can also be chosen) can remove the noise and find the appropriate nuclei size after manual thresholding
# %%
# Apply mean filters to an image to aid foreground background segmentation
# %%
# Instantiate the napari viewer
importnaparifromOpenIJTIFFimportopen_ij_tiffviewer=napari.Viewer()# %%
# Read the intensity image
image,*_=open_ij_tiff('https://github.com/NEUBIAS/training-resources/raw/master/image_data/xy_8bit__nuclei_very_noisy.tif')# %%
# View the image
# - Appreciate that it is quite noisy
# - Inspect the pixel values to find a threshold that separates the nuclei from the background
viewer.add_image(image)# %%
# Binarise the image
# - Appreciate that one cannot segment the nuclei by a simple intensity threshold
binary_image=image>40viewer.add_image(binary_image)# %%
# Prepare filtering the image by defining a circular structural element with a radius of 1 pixel
fromskimage.morphologyimportdiskdisk_radius_1=disk(1)print(disk_radius_1)# %%
# Apply a mean filter to the image with the above structural element
fromskimage.filters.rankimportmeanmean_image_1=mean(image,disk_radius_1)# Add the filtered image to napari
# Napari:
# - Zoom in and inspect the pixel values to check that the filtered image indeed contains the local mean values of the raw image
viewer.add_image(mean_image_1)# %%
# Binarise the filtered image
# - Appreciate that one still cannot readily segment the nuclei
binary_image_1=mean_image_1>35viewer.add_image(binary_image_1)# %%
# Apply mean filter with a disk of radius 3
mean_image_3=mean(image,disk(3))viewer.add_image(mean_image_3)# %%
# Now the nuclei can be segmented by a simple threshold :)
binary_image_3=mean_image_3>32viewer.add_image(binary_image_3)# %%
# Close the viewer (CI test requires this)
viewer.close()
Assessment
Fill in the blanks
Fill in the blanks, using these words: decrease, increase, size, structuring element, large
A synonym for neighborhood is __
The filter radius characterize the filter ___
___ filter size can cause a loss of details in the filtered image
Filter can be used to __ the noise in an image
The usage of filters can __ the quality of image segmentation/binarization
Solution
A synonym for neighborhood is structuring element (SE)
The filter radius characterize the filter size
large filter size can cause a loss of details in the filtered image
Filter can be used to decrease the noise in an image
The usage of filters can increase the quality of image segmentation/binarization