import numpy as np
import scipy
import pylab
import pymorph
import mahotas
from scipy import ndimage
image = mahotas.imread('img.tiff')
pylab.imshow(image)
pylab.show()
I want to select (threshold) brown pixels (vessels) on medical image and compute the area which they do represent. How can I do that in Python like in Matlab or C++? Are there any good examples I could not find?
Thank you