I am a crystallographer trying to analyse crystals orientations from up to 5000 files. Can Matlab convert angle values in a table that look like this:
Into a table that looks like this?:
I am a crystallographer trying to analyse crystals orientations from up to 5000 files. Can Matlab convert angle values in a table that look like this:
Into a table that looks like this?:
General idea to solve your problem:
1. Store two images, 1 for 0 degrees and 180 degrees and another for 90 and 270 degrees.
2. Read the data from the file
3. if angle = 0 || angle == 180
image = image1
else
image = image2
end
To handle any angle:
1. Store one image. E.g image = imread('yourfile.png')
2. angle = Read the data from the file
3. B = imrotate(image,angle)
Here's a more concrete example based on Lakesh's idea. However, this will handle any amount of rotation. First start off with a base circular image with a strip in the middle. Once you do this, simply run a
for
loop that stacks all of these rotated images in a grid that resembles the angles seen in your rotation values matrix for every rotation angle that we see in this matrix.The trick is to figure out how to define the base orientation image. As such, let's define a white square, with a black circle in the middle. We will also define a red strip in the middle. For now, let's assume that the base orientation image is 51 x 51. Therefore, we can do this:
With the above, this is what I get:
Now, all you need to do is create a final output image which has as many images as we have rows and columns in your matrix. Given that your rotation matrix values are stored in
M
, we can useimrotate
from the image processing toolbox and specify the'crop'
flag to ensure that the output image is the same size as the original. However, withimrotate
, whatever values don't appear in the image after you rotate it, it defaults to0
. You want this to appear white in your example, so we're going to have to do a bit of work. What you'll need to do is create alogical
matrix that is the same size as the input image, then rotate it in the same way like you did with the base image. Whatever pixels appear black (which are alsofalse
) in this rotated white image, these are the values we need to set to white. As such:Let's try a few angles to be sure this is right:
With the above matrix, this is what I get for my image. This is stored in
output_image
:If you want to save this image to file, simply do
imwrite(output_image, 'output.png');
, whereoutput.png
is the name of the file you want to save to your disk. I chosePNG
because it's lossless and has a relatively low file size compared to other lossless standards (save JPEG 2000).Edit to show no line when the angle is 0
If you wish to use the above code where you want to only display a black circle if the angle is around 0, it's just a matter of inserting an
if
statement inside thefor
loop as well creating another image that contains a black circle with no strip through it. When theif
condition is satisfied, you'd place this new image in the right grid location instead of the black circle with the red strip.Therefore, using the above code as a baseline do something like this:
The variable
tol
in the above code defines a tolerance where anything within-tol <= angle <= tol
has the black circle drawn. This is to allow for floating point tolerances when comparing because it's never a good idea to perform equality operations with floating point values directly. Usually it is accepted practice to compare within some tolerance of where you would like to test for equality.Using the above modified code with the matrix of angles
M
as seen in the previous example, I get this image now:Notice that the top left entry of the matrix has an angle of 0, which is thus visualized as a black circle with no strip through it as we expect.