Line orientation in 3D from centroid and Euler angles

I used the regionprops3 function to detect centroid and Euler angles of cylinders of the same size in 3D space. Now I want to obtain the 3D coordinates of a line (of given length, representing the axis of the cylinders) passing through the centroid and oriented according to the three Euler angles. What kind of coordinate transformation should I consider?

 Accepted Answer

Matt J
Matt J on 19 Jun 2018
Edited: Matt J on 19 Jun 2018
I think you'd be better off using regionprops3 to extract the Eigenvalues and Eigenvectors properties of the cylinders, instead of the Orientation property (which I assume you are using now). The eigenvector corresponding to the largest eigenvalue should give you the direction vector of the long axis of the cylinder directly.

5 Comments

Thanks for you answer. In theory I have also the BoundingBox, but it is not so trivial to obtain the orientation from it.
How could I transform the largest eigenvalue in the 3D coordinates of two points at equal distance from the centroid (knowing the length of the cylinder axis)?
I think you've got it backwards. Once you have the centroid of the cylinder and the direction vector of its axis (per my suggestion above), you can find the end points according to,
Endpoints= Centroid +/- (Length/2)*DirectionVector
It's just the DirectionVector that I am trying to determine from the results. Eigenvalues determine the PrincipalAxes lengths, according to the documentation of regionprops3 (and, indeed, two of them are equal in magnitude).
Well, as I said, the eigenvector corresponding to the largest eigenvalue is the direction vector. So, you have it already from
regionprops3(yourImage, 'Centroid','EigenVectors','EigenValues')
One thing to note. I believe the EigenVectors are the rows of the matrix given in the output of regionprops3, not the columns.
I think eigenvectors are still the columns of eigenvector matrix but they are in image coordinates i.e. (row,col,page) and not in (x,y,z).
For (x,y,z) space, I think we need to represent it as {eigenvector(2,1), eigenvector(1,1), eigenvector(3,1)} for the major principal direction.

Sign in to comment.

More Answers (0)

Categories

Find more on Linear Algebra in Help Center and File Exchange

Products

Release

R2017b

Asked:

on 19 Jun 2018

Commented:

on 20 Sep 2018

Community Treasure Hunt

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

Start Hunting!