로딩
티스토리 데이터 처리 중입니다.

지문 (fingerprint) 일치 알고리즘 구현하기 (Python)

 지문 (fingerprint) 일치 알고리즘 구현하기 (Python)

지문 (fingerprint) 일치 알고리즘 구현하기 (Python) 0. OpenCV 특징 매칭 (Feature Matching) 알고리즘 종류 A.

Brute-Force Matching with ORB detector 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import numpy as np import cv2 as cv import matplotlib.pyplot as plt img1 = cv.imread('box.png',cv.IMREAD_GRAYSCALE) # queryImage img2 = cv.imread('box_in_scene.png',cv.IMREAD_GRAYSCALE) # trainImage # Initiate ORB detector .....