【发布时间】:2015-10-19 14:13:48
【问题描述】:
我正在关注 Matlab > 帮助指南“使用点特征匹配在杂乱场景中进行对象检测”,detectSURFFeatures() 会出错,因为它需要一个二维输入参数。 .png 也不起作用。
boxImage = imread('C:\WORK\用于特征匹配的图像\iPhone6p_back_clean.JPG');
boxPoints = detectSURFFeatures(boxImage);
使用 detectSURFFeatures 时出错 预期输入数字 1 I 是二维的。
detectSURFFeatures 中的错误>checkImage(第 124 行) validateattributes(I,{'logical', 'uint8', 'int16', 'uint16', ...
detectSURFFeatures 中的错误(第 81 行) checkImage(I);
【问题讨论】:
标签: matlab computer-vision matlab-cvst