Gabor filter parameters.
Hey I am working on fingerprint project.
I am implementing method from : https://answers.opencv.org/question/6...
in python open-CV.
In the gabor filer stage I am doing this:
g_kernel = cv.getGaborKernel( ... )
gabor_filtered = cv.filter2D(equ, cv.CV_8UC3, g_kernel)
but I dont know what parameters to enter in getGaborkernel to get to the same result as in the article I posted link before.