I am trying to implement vessel extraction from Retinal fundus image from the paper Multilayered thresholding-based blood vessel segmentationfor screening of diabetic retinopathy: M. Usman Akram • Shoab A. Khan
It requires me to determine 2D Gabor Wavelet of the input image to enhance the blood vessels only. The response of the 2D Gabor wavelet when applied on green channel of the image looks something like this:
I read upon Pywavelets but it provides Wavelet transform for only 1D signals. Even scipy does not have an implementation. There are some Matlab implementations but I don't seem to understand it. I came across this: https://pythonhosted.org/bob.ip.gabor/ but I couldn't comprehend it nor was it installable on Windows
Is there any library that provides me with the said functionality? Or, how can I implement it by hand using Numpy/Scipy?
Thanks