This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Numpy is needed because OpenCV images in python are actually numpy arrays. | |
import numpy | |
import cv2 | |
class iris_detection(): | |
def __init__(self, image_path): | |
''' | |
initialize the class and set the class attributes | |
''' | |
self._img = None |