Re: Howto model decoupled hierarchies?
- From: "Neo" <neo55592@xxxxxxxxxxx>
- Date: 22 Nov 2006 09:56:50 -0800
It not the vertex / point storing this data. It's at contour-level.
Means for each contour we calculate the convex hull and kD-tree.
- A convex hull is some kind of simplified contour (it resembles some
kind of deformed circle) and also have lots of vertices (the vertices
of the contour).
- A kD-Tree is an "ordered" set of the vertices that allows fast
discovery of the points next to any arbitrary other point. The kD-tree
is actually a 2D-tree
Would the following data structure meet your app's basic requirements:
point1
x
10
y
25
z
54
closestPoints
->point7
->point3
->point56
->point43
...
convexHull
->point7
->point56
->point56
->point3
...
where x, y, z are raw data
and closestNodes and convexHull are derived data.
Do you need to related a point to more than one convexHull at the same
time?
.
- Follow-Ups:
- Re: Howto model decoupled hierarchies?
- From: Thomas Kowalski
- Re: Howto model decoupled hierarchies?
- References:
- Howto model decoupled hierarchies?
- From: Thomas Kowalski
- Re: Howto model decoupled hierarchies?
- From: Neo
- Re: Howto model decoupled hierarchies?
- From: Thomas Kowalski
- Re: Howto model decoupled hierarchies?
- From: Neo
- Re: Howto model decoupled hierarchies?
- From: Thomas Kowalski
- Howto model decoupled hierarchies?
- Prev by Date: Re: How to describe array elements with UML2.0?
- Next by Date: Re: Command pattern: Interaction allowed?
- Previous by thread: Re: Howto model decoupled hierarchies?
- Next by thread: Re: Howto model decoupled hierarchies?
- Index(es):
Relevant Pages
|