I have some problem in Matlab. I'm working and try to use this ref: http://www.mathworks.com/help/vision/gs/object-detection-and-tracking.html But in the last Matlab version there's no function named like 'transformPointsForward'. What can I replace it? Block, where it uses:
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);
Many thanks!