-
Notifications
You must be signed in to change notification settings - Fork 0
/
Features_Detect.py
76 lines (67 loc) · 2.35 KB
/
Features_Detect.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import numpy as np
import cv2
from matplotlib import pyplot as plt
import sys
if len(sys.argv) != 2:
print ("Usage :",sys.argv[0],"detector(= orb ou kaze)")
sys.exit(2)
if sys.argv[1].lower() == "orb":
detector = 1
elif sys.argv[1].lower() == "kaze":
detector = 2
else:
print ("Usage :",sys.argv[0],"detector(= orb ou kaze)")
sys.exit(2)
#Lecture de la paire d'images
img1 = cv2.imread('Image_Pairs/torb_small1.png')
print("Dimension de l'image 1 :",img1.shape[0],"lignes x",img1.shape[1],"colonnes")
print("Type de l'image 1 :",img1.dtype)
img2 = cv2.imread('Image_Pairs/torb_small2.png')
print("Dimension de l'image 2 :",img2.shape[0],"lignes x",img2.shape[1],"colonnes")
print("Type de l'image 2 :",img2.dtype)
#Début du calcul
t1 = cv2.getTickCount()
#Création des objets "keypoints"
if detector == 1:
kp1 = cv2.ORB_create(nfeatures = 250,#Par défaut : 500
scaleFactor = 2,#Par défaut : 1.2
nlevels = 3)#Par défaut : 8
kp2 = cv2.ORB_create(nfeatures=250,
scaleFactor = 2,
nlevels = 3)
print("Détecteur : ORB")
else:
kp1 = cv2.KAZE_create(upright = False,#Par défaut : false
threshold = 0.001,#Par défaut : 0.001
nOctaves = 4,#Par défaut : 4
nOctaveLayers = 4,#Par défaut : 4
diffusivity = 2)#Par défaut : 2
kp2 = cv2.KAZE_create(upright = False,#Par défaut : false
threshold = 0.001,#Par défaut : 0.001
nOctaves = 4,#Par défaut : 4
nOctaveLayers = 4,#Par défaut : 4
diffusivity = 2)#Par défaut : 2
print("Détecteur : KAZE")
#Conversion en niveau de gris
gray1 = cv2.cvtColor(img1,cv2.COLOR_BGR2GRAY)
gray2 = cv2.cvtColor(img2,cv2.COLOR_BGR2GRAY)
#Détection des keypoints
pts1 = kp1.detect(gray1,None)
pts2 = kp2.detect(gray2,None)
t2 = cv2.getTickCount()
time = (t2 - t1)/ cv2.getTickFrequency()
print("Détection des points d'intérêt :",time,"s")
#Affichage des keypoints
img1 = cv2.drawKeypoints(gray1, pts1, None, flags=4)
# flags définit le niveau d'information sur les points d'intérêt
# 0 : position seule ; 4 : position + échelle + direction
img2 = cv2.drawKeypoints(gray2, pts2, None, flags=4)
print(len(pts1))
print(len(pts2))
plt.subplot(121)
plt.imshow(img1)
plt.title('Image n°1')
plt.subplot(122)
plt.imshow(img2)
plt.title('Image n°2')
plt.show()