Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Error using imwarp (line 33)
조회 수: 1 (최근 30일)
이전 댓글 표시
I have tried to use imwarp function simply on example from documentation - Apply Horizontal Shear to Image. But it is still returning me: Error using imwarp (line 33), Invalid input transformation. What I am doing wrong? I have Matlab 2013a.
close all, clear all;
I = imread('cameraman.tif');
tform = affine2d([1 0 0; .5 1 0; 0 0 1]);
J = imwarp(I,tform);
figure, imshow(I), figure, imshow(J)
댓글 수: 0
답변 (3개)
Image Analyst
2013년 11월 3일
I have R2013a and I copied and pasted your code and it worked fine. Attach your file. You didn't give all your code because imwarp() is not on line 33 like your partial error message says, so you obviously neglected to give all your code. Also you forgot to give the error message. Like far too many people, you snipped out a small part of the error message and didn't give use ALL the red text that you have. Not sure why you did that but make it easy for us to help you by giving us all the information that you have, not just part of it.
댓글 수: 0
Alex Taylor
2013년 11월 3일
In addition to the error message, can you please provide the output of:
which -all affine2d
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!