Rotating pcolor plot and plotting a cross-section

7 visualizaciones (últimos 30 días)
Anthony
Anthony el 12 de Abr. de 2018
Comentada: Anthony el 12 de Abr. de 2018
I am taking an image of USAF bar targets with x-y single-pixel values. I want to plot a cross-section of the bar targets to analyze the contrast. The cross-section line must be normal to the bars on the target. You can see below that my target is not aligned perfectly. I would appreciate any help!
The main part of my code that is relevant is:
...
[X,Y] = meshgrid(x,y); % Creates a meshgrid given horizontal and vertical length increments, x and y.
A = reshape(Value,N,M); % Where N and M are the number of columns and rows respectively.
pcolor(X,Y,A);
...
This produces the following image:
Thank you in advance!

Respuesta aceptada

Walter Roberson
Walter Roberson el 12 de Abr. de 2018
For the purpose of display, probably the easiest way to do the rotation is to create a hgtransform group that you parent the image object to, and makehgtform() to create the rotation matrix which you then apply to the hgtransform group. This will have the effect of rotating what is displayed.
For taking the cross-section, improfile is happy to handle an angled line. What improfile does underneath is interp2() over the vector of coordinates.
  1 comentario
Anthony
Anthony el 12 de Abr. de 2018
Thank you, I was able to achieve both using your suggestions!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Object Containers en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by