Finding axis of symmetry given n points and their surface normals












1












$begingroup$


Given a roughly torus-shaped 3D object: it has cylindrical symmetry, one axis of rotation, and is symmetric with respect to any angle around that axis.



Imagine a donut, but with any number of ridges and deformations, as long as they obey cylindrical symmetry.



I want to apply a RANSAC fit for this object, i.e. with a sample of n random points that are assumed to lie on the object, I want to guess the position and orientation of the object.



As far as I see, if you draw a line through any point on the surface, perpendicular to the surface, it will intersect the central axis (or be parallel to the axis). So it should be possible to calculate the axis with enough points.



Without knowing the exact shape and size of the object,

given only n random points on the surface and their surface normals,




  • How can I determine the axis?

  • What is the smallest number of points I need?
    (ignoring degenerative cases)


Or in other words: given n skew lines that all intersect the same common line A, how can I determine line A?





(Update)
I worked out a partial solution using 2 surface points, assuming I already know EITHER the direction of the axis, OR a point on the axis:




  • construct a plane through each surface point,


    • spanned by the surface normal and the axis direction (if I know the direction),

    • OR spanned by the surface normal and the vector from the surface point to the axis point (if I know such a point).



  • intersect the two planes

  • the intersection is the axis of symmetry.


So I can do a RANSAC fit by choosing a random direction or a random axis point. A solution without such arbitrary guesses would be more robust though.










share|cite|improve this question











$endgroup$












  • $begingroup$
    Direction of the axis is no easier to find than its position. As to the smallest $n$, I think 4 is enough and 3 is not.
    $endgroup$
    – Ivan Neretin
    Dec 11 '18 at 15:51










  • $begingroup$
    If I know the direction (or just guess), then I can find the position with only two points (though it does not seem to be very robust against measurement errors) I am not sure if the opposite is possible as well. But this makes me suspect that 3 points could be enough.
    $endgroup$
    – HugoRune
    Dec 11 '18 at 21:40
















1












$begingroup$


Given a roughly torus-shaped 3D object: it has cylindrical symmetry, one axis of rotation, and is symmetric with respect to any angle around that axis.



Imagine a donut, but with any number of ridges and deformations, as long as they obey cylindrical symmetry.



I want to apply a RANSAC fit for this object, i.e. with a sample of n random points that are assumed to lie on the object, I want to guess the position and orientation of the object.



As far as I see, if you draw a line through any point on the surface, perpendicular to the surface, it will intersect the central axis (or be parallel to the axis). So it should be possible to calculate the axis with enough points.



Without knowing the exact shape and size of the object,

given only n random points on the surface and their surface normals,




  • How can I determine the axis?

  • What is the smallest number of points I need?
    (ignoring degenerative cases)


Or in other words: given n skew lines that all intersect the same common line A, how can I determine line A?





(Update)
I worked out a partial solution using 2 surface points, assuming I already know EITHER the direction of the axis, OR a point on the axis:




  • construct a plane through each surface point,


    • spanned by the surface normal and the axis direction (if I know the direction),

    • OR spanned by the surface normal and the vector from the surface point to the axis point (if I know such a point).



  • intersect the two planes

  • the intersection is the axis of symmetry.


So I can do a RANSAC fit by choosing a random direction or a random axis point. A solution without such arbitrary guesses would be more robust though.










share|cite|improve this question











$endgroup$












  • $begingroup$
    Direction of the axis is no easier to find than its position. As to the smallest $n$, I think 4 is enough and 3 is not.
    $endgroup$
    – Ivan Neretin
    Dec 11 '18 at 15:51










  • $begingroup$
    If I know the direction (or just guess), then I can find the position with only two points (though it does not seem to be very robust against measurement errors) I am not sure if the opposite is possible as well. But this makes me suspect that 3 points could be enough.
    $endgroup$
    – HugoRune
    Dec 11 '18 at 21:40














1












1








1


0



$begingroup$


Given a roughly torus-shaped 3D object: it has cylindrical symmetry, one axis of rotation, and is symmetric with respect to any angle around that axis.



Imagine a donut, but with any number of ridges and deformations, as long as they obey cylindrical symmetry.



I want to apply a RANSAC fit for this object, i.e. with a sample of n random points that are assumed to lie on the object, I want to guess the position and orientation of the object.



As far as I see, if you draw a line through any point on the surface, perpendicular to the surface, it will intersect the central axis (or be parallel to the axis). So it should be possible to calculate the axis with enough points.



Without knowing the exact shape and size of the object,

given only n random points on the surface and their surface normals,




  • How can I determine the axis?

  • What is the smallest number of points I need?
    (ignoring degenerative cases)


Or in other words: given n skew lines that all intersect the same common line A, how can I determine line A?





(Update)
I worked out a partial solution using 2 surface points, assuming I already know EITHER the direction of the axis, OR a point on the axis:




  • construct a plane through each surface point,


    • spanned by the surface normal and the axis direction (if I know the direction),

    • OR spanned by the surface normal and the vector from the surface point to the axis point (if I know such a point).



  • intersect the two planes

  • the intersection is the axis of symmetry.


So I can do a RANSAC fit by choosing a random direction or a random axis point. A solution without such arbitrary guesses would be more robust though.










share|cite|improve this question











$endgroup$




Given a roughly torus-shaped 3D object: it has cylindrical symmetry, one axis of rotation, and is symmetric with respect to any angle around that axis.



Imagine a donut, but with any number of ridges and deformations, as long as they obey cylindrical symmetry.



I want to apply a RANSAC fit for this object, i.e. with a sample of n random points that are assumed to lie on the object, I want to guess the position and orientation of the object.



As far as I see, if you draw a line through any point on the surface, perpendicular to the surface, it will intersect the central axis (or be parallel to the axis). So it should be possible to calculate the axis with enough points.



Without knowing the exact shape and size of the object,

given only n random points on the surface and their surface normals,




  • How can I determine the axis?

  • What is the smallest number of points I need?
    (ignoring degenerative cases)


Or in other words: given n skew lines that all intersect the same common line A, how can I determine line A?





(Update)
I worked out a partial solution using 2 surface points, assuming I already know EITHER the direction of the axis, OR a point on the axis:




  • construct a plane through each surface point,


    • spanned by the surface normal and the axis direction (if I know the direction),

    • OR spanned by the surface normal and the vector from the surface point to the axis point (if I know such a point).



  • intersect the two planes

  • the intersection is the axis of symmetry.


So I can do a RANSAC fit by choosing a random direction or a random axis point. A solution without such arbitrary guesses would be more robust though.







geometry 3d rotations computational-geometry symmetry






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Dec 11 '18 at 22:25







HugoRune

















asked Dec 11 '18 at 10:44









HugoRuneHugoRune

1338




1338












  • $begingroup$
    Direction of the axis is no easier to find than its position. As to the smallest $n$, I think 4 is enough and 3 is not.
    $endgroup$
    – Ivan Neretin
    Dec 11 '18 at 15:51










  • $begingroup$
    If I know the direction (or just guess), then I can find the position with only two points (though it does not seem to be very robust against measurement errors) I am not sure if the opposite is possible as well. But this makes me suspect that 3 points could be enough.
    $endgroup$
    – HugoRune
    Dec 11 '18 at 21:40


















  • $begingroup$
    Direction of the axis is no easier to find than its position. As to the smallest $n$, I think 4 is enough and 3 is not.
    $endgroup$
    – Ivan Neretin
    Dec 11 '18 at 15:51










  • $begingroup$
    If I know the direction (or just guess), then I can find the position with only two points (though it does not seem to be very robust against measurement errors) I am not sure if the opposite is possible as well. But this makes me suspect that 3 points could be enough.
    $endgroup$
    – HugoRune
    Dec 11 '18 at 21:40
















$begingroup$
Direction of the axis is no easier to find than its position. As to the smallest $n$, I think 4 is enough and 3 is not.
$endgroup$
– Ivan Neretin
Dec 11 '18 at 15:51




$begingroup$
Direction of the axis is no easier to find than its position. As to the smallest $n$, I think 4 is enough and 3 is not.
$endgroup$
– Ivan Neretin
Dec 11 '18 at 15:51












$begingroup$
If I know the direction (or just guess), then I can find the position with only two points (though it does not seem to be very robust against measurement errors) I am not sure if the opposite is possible as well. But this makes me suspect that 3 points could be enough.
$endgroup$
– HugoRune
Dec 11 '18 at 21:40




$begingroup$
If I know the direction (or just guess), then I can find the position with only two points (though it does not seem to be very robust against measurement errors) I am not sure if the opposite is possible as well. But this makes me suspect that 3 points could be enough.
$endgroup$
– HugoRune
Dec 11 '18 at 21:40










0






active

oldest

votes











Your Answer





StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3035166%2ffinding-axis-of-symmetry-given-n-points-and-their-surface-normals%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3035166%2ffinding-axis-of-symmetry-given-n-points-and-their-surface-normals%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Plaza Victoria

In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...