필터 지우기
필터 지우기

How to change coordinates?

조회 수: 5 (최근 30일)
Umme Tania
Umme Tania 2013년 9월 6일
How to transfer image texture from Cartesian to polar coordinates? I know how to find theta or other mathematical part but in some image i saw researchers convert circle part to a rectangular part by transferring from cartesian coordinate to polar coordinate.

답변 (1개)

Ashutosh
Ashutosh 2013년 9월 6일
Do you mean to say you want to address using (r,theta) instead of x,y? (hope u didnt mean log polar) If yes, then code as:
r = sqrt(x^2 + y^2) theta = atan(y/x) (make sure x!=0, handle it directly)
Now, I(x,y) can be addressed as I(r,theta)
  댓글 수: 1
Umme Tania
Umme Tania 2013년 9월 6일
Thank you, but i already done this part. Can u please read the question again.I edited the question.

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

카테고리

Help CenterFile Exchange에서 Cartesian Coordinate System Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by