필터 지우기
필터 지우기

how can i translate a 2D image in x ,y directions using matlab?

조회 수: 3 (최근 30일)
mmm ssss
mmm ssss 2012년 2월 14일
편집: Sean de Wolski 2013년 10월 11일
hi all
i have a 2D image , how can i translated it in x direction by using
from :x-translation=-tx;to:x-translation=tx;step=5;
and in y direction
from :y-translation=-ty;to:y-translation=ty;step=5;
also , how can i select suitable values for tx and ty?
any help please?
Regards

채택된 답변

Sean de Wolski
Sean de Wolski 2012년 2월 14일
  댓글 수: 5
mmm ssss
mmm ssss 2012년 2월 14일
for example
elseif dims == 2
T_dims = [1 2]; %Dimensions in order
A = zeros(3);
A([1 5 9]) = 1;
A(3,1:2) = translation;
can you illustrate this to me?why you create A?
also about
translation =
[row_shift col_shift] for 2D images
how this can be modified according to my case?
from :x-translation=-tx;to:x-translation=tx;step=5;
and in y direction
from :y-translation=-ty;to:y-translation=ty;step=5;
i am new to matlab ,so please be simple in your reply.
regards
Sean de Wolski
Sean de Wolski 2012년 2월 14일
You don't need to modify anything, read the help - it explains how to use the inputs to translate the way you want.
A is the transformation matrix.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by