Borrar filtros
Borrar filtros

How to change coordinates?

5 visualizaciones (últimos 30 días)
Umme Tania
Umme Tania el 6 de Sept. de 2013
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.

Respuestas (1)

Ashutosh
Ashutosh el 6 de Sept. de 2013
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 comentario
Umme Tania
Umme Tania el 6 de Sept. de 2013
Thank you, but i already done this part. Can u please read the question again.I edited the question.

Iniciar sesión para comentar.

Categorías

Más información sobre Cartesian Coordinate System Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by