如何使KAZE功能检测角点?

时间:2019-04-02 19:13:43

标签: matlab computer-vision feature-detection sift corner-detection

我正在努力控制KAZE检测器中的兴趣点。我只希望检测器提取角点/兴趣点。我需要调整哪些参数以获得理想的结果?

这是我的代码:

img = imread("")
I = rgb2gray(img);

points = detectKAZEFeatures(I,'NumOctaves', 3, 'NumScaleLevels', 4); 
num_points = length(points); 

figure;
imshow(bilde_gray); 
hold on;
plot(points.selectStrongest(num_points);

enter image description here

0 个答案:

没有答案