iris recognation: iris center and pupil center center doesn't match, interpolation doesn't work

230 Views Asked by At

I'm working on a project for iris recognation as a graduation project.

Plan is like that:

1- Get the the iris image (Found CASIA database) 2- Detect iris (partially done) 3- Cut the iris region (done) 4- Interpolate the image(stuck) 5- Apply gabor filter (done) 6- Apply canny (done) 7- Calculate hamming distance (done)

import numpy
import cv2
import numpy as np
import os
import math
import scipy

import os


directory = os.listdir("C:/Users/ROOT\Documents/CASIA_IrisDatabase/005/1")
numero_file = len(directory)

print (numero_file)
for file in directory:
    print(file)
#file_iride = raw_input("File(riportare anche estensione): ")

for file in directory:
    path = "C:/Users/ROOT\Documents/CASIA_IrisDatabase/005/1/%s" % (file)
    image_iride = cv2.imread(path)
    output = image_iride.copy()
    image_test = cv2.imread(path)


    image_test = cv2.Canny(image_test, 25, 50, apertureSize=5)
    cv2.imshow("Image test", image_test)
    image_test = cv2.GaussianBlur(image_test, (7, 7), 3)

    #cerchi = cv2.HoughCircles(image_test, cv2.HOUGH_GRADIENT,50, 100.0, 30, 100,100,70)
    #cerchi = cv2.HoughCircles(image_test, cv2.HOUGH_GRADIENT, 2, 400, 50, 100, 100, 100)
    cerchi = cv2.HoughCircles(image_test, cv2.HOUGH_GRADIENT, 1.3, 800)
    if cerchi is not None:
        cerchi = np.round(cerchi[0, :]).astype("int")
        for (x, y, raggio) in cerchi:
           cv2.circle(output, (x, y), 108, (255, 0, 0), 4)
           cv2.imshow("Image test", np.hstack([image_iride, output]))
           print (raggio)
        cv2.waitKey()

        x1 = x - 108
        x2 = x + 108
        y1 = y - 108
        y2 = y + 108
        #img2 = image_iride[y:y2,x1:x2]
        #cv2.imshow("Image test", img2)
        #cv2.waitKey()
        img2 = image_iride[y1:y2,x1:x2]
        cv2.imshow("Image test", img2)
        cv2.waitKey()

        img2 = cv2.linearPolar(img2, (108, 108), 108, cv2.WARP_FILL_OUTLIERS )
        cv2.imshow("Image test", img2)
        cv2.waitKey()

But when i do the linearPolar transformation image goes like that, not a flat line. look here

How can i to do for a straight left line?

Any help would be appreciated.

0

There are 0 best solutions below