help me plz

조회 수: 2 (최근 30일)
lama riad
lama riad 2012년 2월 2일
편집: Matt J 2013년 9월 27일
Hi, I want to display all i did for the image (translation, scale, and rotation) but error is still appearing. Can any body help me :'(
this is the code i did:
I=imread('cameraman.jpg');
deg = -30;
I2 = imrotate(I, deg, 'bilinear', 'crop');
J=imresize(I,[900 900],'nearest');
T = [1 0 0; 0 1 0;70 70 1];
tform_translate = maketform('affine', T);
[I3,xdata,ydata] = imtransform(I,tform_translate);
all=I3+I2+J;
imshow(all)
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 2월 2일
Please edit the title to something relevant to the topic.
lama riad
lama riad 2012년 2월 3일
rotation,scale,translation all in one image

댓글을 달려면 로그인하십시오.

채택된 답변

Wayne King
Wayne King 2012년 2월 2일
You cannot resize the image and then add it to versions which are not resized.
Matrix addition is only defined for matrices of the same size.
I'm assuming that is your error since you do not give us the error you are getting.
  댓글 수: 1
lama riad
lama riad 2012년 2월 3일
you are right the error in the resizing but I don't know what 2 do

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

lama riad
lama riad 2012년 2월 2일
ok, can u help me solving that?
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 2월 2일
What is your desired end result?
lama riad
lama riad 2012년 2월 3일
my desired result is rotated,scaled, and translated image

댓글을 달려면 로그인하십시오.


fjnb86
fjnb86 2012년 2월 3일
dont forget to put next time a title describing ur topic ;)
  댓글 수: 1
lama riad
lama riad 2012년 2월 3일
ok,sorry 4 that....I'll try not 2 do this fatal mistake in future :-P

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by