I start to learn about segmentation, and I want to start with my picture, but when I attach my image, the axis are not where I want. Also, I try with a filter but it doesn't work for my picture.
this is the picture the code create:
import scipy.ndimage
from PIL import Image
from scipy.ndimage import gaussian_filter
im= Image.open('0.tiff')
#im.show()
plt.imshow(im)
im = scipy.ndimage.gaussian_filter(im, sigma=1)