我在 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);
非常感谢!