1

我在 Matlab 中遇到了一些问题。我正在工作并尝试使用此参考: http: //www.mathworks.com/help/vision/gs/object-detection-and-tracking.html 但在最后一个 Matlab 版本中,没有名为“transformPointsForward”的函数. 我可以用什么代替它?块,它使用的地方:

boxPolygon = [1, 1;...                           % top-left
        size(boxImage, 2), 1;...                 % top-right
        size(boxImage, 2), size(boxImage, 1);... % bottom-right
        1, size(boxImage, 1);...                 % bottom-left
        1, 1];                   % top-left again to close the polygon
    newBoxPolygon = transformPointsForward(tform, boxPolygon.Location);
    figure; imshow(sceneImage);

非常感谢!

4

1 回答 1

4

transformPointsFoward仅从 2013a 起可用。如果您使用的是旧版本,您将需要查看tformfwd,也可以从图像处理工具箱中查看。

于 2013-04-08T07:19:12.037 回答