- This project represents a new iris recognition technique that detects and classify the iris images efficiently with high accuracy. The iris recognition model is beginning by eye detection process then the iris detection process takes place which detects the iris inside the eyes then iris segmentation process gets iris images that will be saved and used in the last process which is responsible for iris classification using convolutional neural network.
- The dataset used in this project is Ubiris version 2 which contains 1214 images from different 214 classes(v2).
- The model uses a pre-trained convolutional neural network(CNN) model DenseNet-201 in the last process of iris classification.
- numpy
- keras
- sklearn
- opencv
- glob
- tensorflow
-
Download the ubiris.v2 dataset from this link Ubiris.v2
-
Change your directory names that contain the dataset to the name in the python and notebook files in these lines:
-
In iris_extreaction.py:
#here create directory name that contain the dataset "UBIRIS_200_150/Sessao_1/" for filepath in glob.iglob('UBIRIS_200_150/Sessao_1/*'): #here create directory name that contain the the extracted iris feautres "final_iris2/" cv2.imwrite('final_ iris2/'+str(L)+'.'+str(number)+".jpg",new_roi)
-
In iris_classification. ipynb:
# here directory name is "final_iris2" which contain extracted iris features for filefilepath in glob.iglob('final_iris2/*'):
-
-
Run iris_extraction.py.
-
Open iris_classification. Ipynb and run it's cells.