Thursday, October 2, 2025
HomeLanguagesMahotas – Filtering Region

Mahotas – Filtering Region

In this article, we will see how we can filter region in mahotas. For this, we are going to use the fluorescent microscopy image from a nuclear segmentation benchmark. We can get the image with the help of command given below –

mahotas.demos.nuclear_image()

Below is the nuclear_image

  

In order to filter this image we will take the image object which is numpy.ndarray and filter it with the help of indexing, below is the command to do this

nuclear = nuclear[:, :, 0]

Example 1 : 

Python3




# importing required libraries
import mahotas as mh
import mahotas.demos
import numpy as np
from pylab import imshow, show
 
# getting nuclear image
nuclear = mh.demos.nuclear_image()
 
print("Original Image i.e without filter")
# show the original image
imshow(nuclear)
show()
 
# filtering the image
nuclear = nuclear[:, :, 0]
 
print("Image with filter")
# showing the image
imshow(nuclear)
show()


Output :

  

Example 2 : 

Python3




# importing required libraries
import mahotas as mh
import mahotas.demos
import numpy as np
from pylab import imshow, show
 
# getting nuclear image
nuclear = mh.demos.nuclear_image()
 
print("Original Image i.e without filter")
# show the original image
imshow(nuclear)
show()
 
# filtering the image
nuclear = nuclear[500:, 500:, :]
 
print("Image with filter")
# showing the image
imshow(nuclear)
show()


Output :

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11926 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7079 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS