How to find out if a set of point3D are in the same plane?
I have a set of point3D (X, Y, Z). I need to check if they are coplanar with some sort of tolerances. My way of doing it is that: I convert all points from the Global Coordinate System to Local one, where local x,y is in the same plane of the plane defined by 3 points in the set, and z is normal to that plane. And then, all I need to do is to check if all points in the set have approximately similar local z values.
However, the tricky part is how to pick the 3 points to define the reference plane. If picked randomly, this would result in sometimes the set of points are coplanar, sometimes not. Do you have any suggestion?
algorithm geometry point plane geometry-surface
add a comment |
I have a set of point3D (X, Y, Z). I need to check if they are coplanar with some sort of tolerances. My way of doing it is that: I convert all points from the Global Coordinate System to Local one, where local x,y is in the same plane of the plane defined by 3 points in the set, and z is normal to that plane. And then, all I need to do is to check if all points in the set have approximately similar local z values.
However, the tricky part is how to pick the 3 points to define the reference plane. If picked randomly, this would result in sometimes the set of points are coplanar, sometimes not. Do you have any suggestion?
algorithm geometry point plane geometry-surface
add a comment |
I have a set of point3D (X, Y, Z). I need to check if they are coplanar with some sort of tolerances. My way of doing it is that: I convert all points from the Global Coordinate System to Local one, where local x,y is in the same plane of the plane defined by 3 points in the set, and z is normal to that plane. And then, all I need to do is to check if all points in the set have approximately similar local z values.
However, the tricky part is how to pick the 3 points to define the reference plane. If picked randomly, this would result in sometimes the set of points are coplanar, sometimes not. Do you have any suggestion?
algorithm geometry point plane geometry-surface
I have a set of point3D (X, Y, Z). I need to check if they are coplanar with some sort of tolerances. My way of doing it is that: I convert all points from the Global Coordinate System to Local one, where local x,y is in the same plane of the plane defined by 3 points in the set, and z is normal to that plane. And then, all I need to do is to check if all points in the set have approximately similar local z values.
However, the tricky part is how to pick the 3 points to define the reference plane. If picked randomly, this would result in sometimes the set of points are coplanar, sometimes not. Do you have any suggestion?
algorithm geometry point plane geometry-surface
algorithm geometry point plane geometry-surface
asked Jan 2 at 22:29
N.T.CN.T.C
3412515
3412515
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Probably the most common way to do this would be with Principal Component Analysis: https://en.wikipedia.org/wiki/Principal_component_analysis
The short description is:
- Calculate the 3x3 covariance matrix of the input points
- Extract the smallest Eigenvector. That is the normal vector for the plane that is the Least-Squared-Error fit to all your points.
add a comment |
normal
n
pick any 3 points from your dataset that are not on a single line let call them
p0,p1,p2
. To improve accuracy they should be more distant to each other. Now to construct a normal vector do this:
n = cross( p1-p0 , p2-p0 ); // perpendicular vector to both operands of cross
n /= |n|; // unit vector
check all points
for any point on the plane formed by
p0,p1,p2
thealtitude
component (in normal direction) should be zero so for any pointp
:
|dot( p-p0 , n )|<=1e-10
the
1e-10
is just some zero threshold due to accuracy loss on FPU ... Any point not satisfying the condition does not belong to the plane ...
So how to pick 3 points forming a triangle ?
pick
p0,p1
pick
p0
as point that has minimalx,y,z
coordinates andp1
that has maximalx,y,z
coordinates. This ensures they are distant enough.
pick
p2
now sear the points and find such that
|dot( p1-p0, pi-p0 )|
is minimal. While|pi-p0|
is not zero and big enough (for example at least0.1*|p1-p0|
). That ensures the points form a triangle and are not too close to each.
All of this is doable in O(n)
so is still fast ...
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014006%2fhow-to-find-out-if-a-set-of-point3d-are-in-the-same-plane%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Probably the most common way to do this would be with Principal Component Analysis: https://en.wikipedia.org/wiki/Principal_component_analysis
The short description is:
- Calculate the 3x3 covariance matrix of the input points
- Extract the smallest Eigenvector. That is the normal vector for the plane that is the Least-Squared-Error fit to all your points.
add a comment |
Probably the most common way to do this would be with Principal Component Analysis: https://en.wikipedia.org/wiki/Principal_component_analysis
The short description is:
- Calculate the 3x3 covariance matrix of the input points
- Extract the smallest Eigenvector. That is the normal vector for the plane that is the Least-Squared-Error fit to all your points.
add a comment |
Probably the most common way to do this would be with Principal Component Analysis: https://en.wikipedia.org/wiki/Principal_component_analysis
The short description is:
- Calculate the 3x3 covariance matrix of the input points
- Extract the smallest Eigenvector. That is the normal vector for the plane that is the Least-Squared-Error fit to all your points.
Probably the most common way to do this would be with Principal Component Analysis: https://en.wikipedia.org/wiki/Principal_component_analysis
The short description is:
- Calculate the 3x3 covariance matrix of the input points
- Extract the smallest Eigenvector. That is the normal vector for the plane that is the Least-Squared-Error fit to all your points.
answered Jan 2 at 23:00
Matt TimmermansMatt Timmermans
21.1k11733
21.1k11733
add a comment |
add a comment |
normal
n
pick any 3 points from your dataset that are not on a single line let call them
p0,p1,p2
. To improve accuracy they should be more distant to each other. Now to construct a normal vector do this:
n = cross( p1-p0 , p2-p0 ); // perpendicular vector to both operands of cross
n /= |n|; // unit vector
check all points
for any point on the plane formed by
p0,p1,p2
thealtitude
component (in normal direction) should be zero so for any pointp
:
|dot( p-p0 , n )|<=1e-10
the
1e-10
is just some zero threshold due to accuracy loss on FPU ... Any point not satisfying the condition does not belong to the plane ...
So how to pick 3 points forming a triangle ?
pick
p0,p1
pick
p0
as point that has minimalx,y,z
coordinates andp1
that has maximalx,y,z
coordinates. This ensures they are distant enough.
pick
p2
now sear the points and find such that
|dot( p1-p0, pi-p0 )|
is minimal. While|pi-p0|
is not zero and big enough (for example at least0.1*|p1-p0|
). That ensures the points form a triangle and are not too close to each.
All of this is doable in O(n)
so is still fast ...
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
add a comment |
normal
n
pick any 3 points from your dataset that are not on a single line let call them
p0,p1,p2
. To improve accuracy they should be more distant to each other. Now to construct a normal vector do this:
n = cross( p1-p0 , p2-p0 ); // perpendicular vector to both operands of cross
n /= |n|; // unit vector
check all points
for any point on the plane formed by
p0,p1,p2
thealtitude
component (in normal direction) should be zero so for any pointp
:
|dot( p-p0 , n )|<=1e-10
the
1e-10
is just some zero threshold due to accuracy loss on FPU ... Any point not satisfying the condition does not belong to the plane ...
So how to pick 3 points forming a triangle ?
pick
p0,p1
pick
p0
as point that has minimalx,y,z
coordinates andp1
that has maximalx,y,z
coordinates. This ensures they are distant enough.
pick
p2
now sear the points and find such that
|dot( p1-p0, pi-p0 )|
is minimal. While|pi-p0|
is not zero and big enough (for example at least0.1*|p1-p0|
). That ensures the points form a triangle and are not too close to each.
All of this is doable in O(n)
so is still fast ...
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
add a comment |
normal
n
pick any 3 points from your dataset that are not on a single line let call them
p0,p1,p2
. To improve accuracy they should be more distant to each other. Now to construct a normal vector do this:
n = cross( p1-p0 , p2-p0 ); // perpendicular vector to both operands of cross
n /= |n|; // unit vector
check all points
for any point on the plane formed by
p0,p1,p2
thealtitude
component (in normal direction) should be zero so for any pointp
:
|dot( p-p0 , n )|<=1e-10
the
1e-10
is just some zero threshold due to accuracy loss on FPU ... Any point not satisfying the condition does not belong to the plane ...
So how to pick 3 points forming a triangle ?
pick
p0,p1
pick
p0
as point that has minimalx,y,z
coordinates andp1
that has maximalx,y,z
coordinates. This ensures they are distant enough.
pick
p2
now sear the points and find such that
|dot( p1-p0, pi-p0 )|
is minimal. While|pi-p0|
is not zero and big enough (for example at least0.1*|p1-p0|
). That ensures the points form a triangle and are not too close to each.
All of this is doable in O(n)
so is still fast ...
normal
n
pick any 3 points from your dataset that are not on a single line let call them
p0,p1,p2
. To improve accuracy they should be more distant to each other. Now to construct a normal vector do this:
n = cross( p1-p0 , p2-p0 ); // perpendicular vector to both operands of cross
n /= |n|; // unit vector
check all points
for any point on the plane formed by
p0,p1,p2
thealtitude
component (in normal direction) should be zero so for any pointp
:
|dot( p-p0 , n )|<=1e-10
the
1e-10
is just some zero threshold due to accuracy loss on FPU ... Any point not satisfying the condition does not belong to the plane ...
So how to pick 3 points forming a triangle ?
pick
p0,p1
pick
p0
as point that has minimalx,y,z
coordinates andp1
that has maximalx,y,z
coordinates. This ensures they are distant enough.
pick
p2
now sear the points and find such that
|dot( p1-p0, pi-p0 )|
is minimal. While|pi-p0|
is not zero and big enough (for example at least0.1*|p1-p0|
). That ensures the points form a triangle and are not too close to each.
All of this is doable in O(n)
so is still fast ...
edited Jan 3 at 8:58
answered Jan 3 at 8:35


SpektreSpektre
30.3k650220
30.3k650220
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
add a comment |
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
Isn't this same as what I described in my question? The problem here is actually what criterion to use to pick p1, p2 and p3. It is quite tricky since, for example, if all points are co-planar but p3, then the pick would result in wrong results.
– N.T.C
Jan 3 at 8:53
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
@N.T.C Yes youre right sorry I forgot to submit the other part of answer ... silly me :)
– Spektre
Jan 3 at 8:59
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014006%2fhow-to-find-out-if-a-set-of-point3d-are-in-the-same-plane%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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