OpenCV to detect and idnetify the denomination of Indian Currency from web cam stream. It uses ORB to Detect Keypoints and BEBLID to compute the Images and FLANN based Matcher to match the images in video stream.
pip install -r requirements.txt
from Helpers.Detector import Detector
detect_obj = Detector() # Object Creation
detect_obj.start() # Initialising the Detector
while True:
detect_obj.detect() # Detecting Images in video Stream