私は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);
どうもありがとう!