在Matlab中替换函数'transformPointsForward'

时间:2013-04-08 06:54:36

标签: matlab matlab-cvst

我在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);

非常感谢!

1 个答案:

答案 0 :(得分:4)

transformPointsFoward仅适用于2013a以后。如果您使用的是旧版本,则需要查看tformfwd,而且还要查看图像处理工具箱。