Identifying Boundary Nodes in a Point Cloud

2 Ansichten (letzte 30 Tage)
Finlay
Finlay am 22 Nov. 2024
Kommentiert: Image Analyst am 23 Nov. 2024
I have 2 point clouds which represent the nodes of 2 3D separate lattices. There is a small gap between the lattices where they don't join together correctly. The boundary face closest to the other body is jagged. I want to identify these bounadry nodes so I can connect them and join my lattices (but the joining part is something I can do in external softwares). Does anyone have any suggestions on how I could go about identifying these boudary nodes? I have tried using the "boundary" function but I am trying with a criteria for identifying the nodes. Any help would be greatly appreciated. I have attached a picture of the nodes for reference.
  4 Kommentare
Finlay
Finlay am 23 Nov. 2024
My apologies, maybe I haven't explained the context of my problem. So each point cloud represents the node points of a lattice. In this case obviously there are 2 separate lattices. Critically, these lattices are not joined to each other and also not of the same type of unit cell, hence their nodes don't align. I am trying to find the closest nodes to each other so I can find joining pairs. I will use these nodes coordinates to create a series of struts through which will attach the lattices. Does that make sense?
Image Analyst
Image Analyst am 23 Nov. 2024
And did the suggestions of pdist2 or knnsearch not work? I've seen other people use them for that situation.

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Matt J
Matt J am 22 Nov. 2024
If the regions are supposed to be convex, you can use convhull or convhulln.
  8 Kommentare
Finlay
Finlay am 23 Nov. 2024
Do you have any suggestions on how to identify these points? I know this is a bit of a wild shot haha
Matt J
Matt J am 23 Nov. 2024
You're the one who has made the decision that they belong in the boundary. Once you tell us why, we might have some suggestions.

Melden Sie sich an, um zu kommentieren.


Walter Roberson
Walter Roberson am 22 Nov. 2024
Your red nodes are sometimes immediately adjacent to your blue nodes. There is no way you will be automatically able to differentiate the nodes -- not unless there is some attached property that can tell them apart (such as color or reflectivity or infrared emission.)
  1 Kommentar
Finlay
Finlay am 22 Nov. 2024
I can differentiate between both the red and blue points okay. They are derived from two separate .csv’s which contain their xyz coordinates. It’s more identify the closest ones to each other on those jagged faces :/

Melden Sie sich an, um zu kommentieren.


Image Analyst
Image Analyst am 23 Nov. 2024
Maybe use either pdist2 or knnsearch to identify blue points that are closest to red points. In other words, pairs that have minimum distance between them.

Community Treasure Hunt

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

Start Hunting!

Translated by