Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
01670ac9
Commit
01670ac9
authored
10 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[GL] Using MathPoint instead of Point in MinimalBoundingSphere.
parent
67b73de3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GeoLib/MinimalBoundingSphere.cpp
+27
-13
27 additions, 13 deletions
GeoLib/MinimalBoundingSphere.cpp
GeoLib/MinimalBoundingSphere.h
+19
-10
19 additions, 10 deletions
GeoLib/MinimalBoundingSphere.h
with
46 additions
and
23 deletions
GeoLib/MinimalBoundingSphere.cpp
+
27
−
13
View file @
01670ac9
...
...
@@ -26,12 +26,14 @@ MinimalBoundingSphere::MinimalBoundingSphere()
{
}
MinimalBoundingSphere
::
MinimalBoundingSphere
(
GeoLib
::
Point
const
&
p
,
double
radius
)
MinimalBoundingSphere
::
MinimalBoundingSphere
(
MathLib
::
MathPoint
const
&
p
,
double
radius
)
:
_radius
(
radius
),
_center
(
p
)
{
}
MinimalBoundingSphere
::
MinimalBoundingSphere
(
GeoLib
::
Point
const
&
p
,
GeoLib
::
Point
const
&
q
)
MinimalBoundingSphere
::
MinimalBoundingSphere
(
MathLib
::
MathPoint
const
&
p
,
MathLib
::
MathPoint
const
&
q
)
:
_radius
(
std
::
numeric_limits
<
double
>::
epsilon
()),
_center
(
p
)
{
MathLib
::
Vector3
const
a
(
p
,
q
);
...
...
@@ -44,7 +46,8 @@ MinimalBoundingSphere::MinimalBoundingSphere(GeoLib::Point const& p, GeoLib::Poi
}
}
MinimalBoundingSphere
::
MinimalBoundingSphere
(
GeoLib
::
Point
const
&
p
,
GeoLib
::
Point
const
&
q
,
GeoLib
::
Point
const
&
r
)
MinimalBoundingSphere
::
MinimalBoundingSphere
(
MathLib
::
MathPoint
const
&
p
,
MathLib
::
MathPoint
const
&
q
,
MathLib
::
MathPoint
const
&
r
)
{
MathLib
::
Vector3
const
a
(
p
,
r
);
MathLib
::
Vector3
const
b
(
p
,
q
);
...
...
@@ -72,7 +75,10 @@ MinimalBoundingSphere::MinimalBoundingSphere(GeoLib::Point const& p, GeoLib::Poi
}
}
MinimalBoundingSphere
::
MinimalBoundingSphere
(
GeoLib
::
Point
const
&
p
,
GeoLib
::
Point
const
&
q
,
GeoLib
::
Point
const
&
r
,
GeoLib
::
Point
const
&
s
)
MinimalBoundingSphere
::
MinimalBoundingSphere
(
MathLib
::
MathPoint
const
&
p
,
MathLib
::
MathPoint
const
&
q
,
MathLib
::
MathPoint
const
&
r
,
MathLib
::
MathPoint
const
&
s
)
{
MathLib
::
Vector3
const
a
(
p
,
q
);
MathLib
::
Vector3
const
b
(
p
,
r
);
...
...
@@ -115,16 +121,22 @@ MinimalBoundingSphere::MinimalBoundingSphere(GeoLib::Point const& p, GeoLib::Poi
}
}
MinimalBoundingSphere
::
MinimalBoundingSphere
(
std
::
vector
<
GeoLib
::
Point
*>
const
&
points
)
MinimalBoundingSphere
::
MinimalBoundingSphere
(
std
::
vector
<
MathLib
::
MathPoint
*>
const
&
points
)
:
_radius
(
-
1
),
_center
(
0
,
0
,
0
)
{
std
::
vector
<
Geo
Lib
::
Point
*>
sphere_points
(
points
);
std
::
vector
<
Math
Lib
::
Math
Point
*>
sphere_points
(
points
);
MinimalBoundingSphere
const
bounding_sphere
=
recurseCalculation
(
sphere_points
,
0
,
sphere_points
.
size
(),
0
);
_center
=
bounding_sphere
.
getCenter
();
_radius
=
bounding_sphere
.
getRadius
();
}
MinimalBoundingSphere
MinimalBoundingSphere
::
recurseCalculation
(
std
::
vector
<
GeoLib
::
Point
*>
sphere_points
,
std
::
size_t
start_idx
,
std
::
size_t
length
,
std
::
size_t
n_boundary_points
)
MinimalBoundingSphere
MinimalBoundingSphere
::
recurseCalculation
(
std
::
vector
<
MathLib
::
MathPoint
*>
sphere_points
,
std
::
size_t
start_idx
,
std
::
size_t
length
,
std
::
size_t
n_boundary_points
)
{
MinimalBoundingSphere
sphere
;
switch
(
n_boundary_points
)
...
...
@@ -153,8 +165,10 @@ MinimalBoundingSphere MinimalBoundingSphere::recurseCalculation(std::vector<GeoL
{
if
(
i
>
start_idx
)
{
GeoLib
::
Point
*
tmp
=
sphere_points
[
start_idx
+
i
];
std
::
copy
(
sphere_points
.
begin
()
+
start_idx
,
sphere_points
.
begin
()
+
(
start_idx
+
i
),
sphere_points
.
begin
()
+
(
start_idx
+
1
));
MathLib
::
MathPoint
*
tmp
=
sphere_points
[
start_idx
+
i
];
std
::
copy
(
sphere_points
.
begin
()
+
start_idx
,
sphere_points
.
begin
()
+
(
start_idx
+
i
),
sphere_points
.
begin
()
+
(
start_idx
+
1
));
sphere_points
[
start_idx
]
=
tmp
;
}
sphere
=
recurseCalculation
(
sphere_points
,
start_idx
+
1
,
i
,
n_boundary_points
+
1
);
...
...
@@ -163,14 +177,14 @@ MinimalBoundingSphere MinimalBoundingSphere::recurseCalculation(std::vector<GeoL
return
sphere
;
}
double
MinimalBoundingSphere
::
pointDistanceSquared
(
Geo
Lib
::
Point
const
&
pnt
)
const
double
MinimalBoundingSphere
::
pointDistanceSquared
(
Math
Lib
::
Math
Point
const
&
pnt
)
const
{
return
MathLib
::
sqrDist
(
_center
.
getCoords
(),
pnt
.
getCoords
())
-
(
_radius
*
_radius
);
}
std
::
vector
<
Geo
Lib
::
Point
*>*
MinimalBoundingSphere
::
getRandomSpherePoints
(
std
::
size_t
n_points
)
const
std
::
vector
<
Math
Lib
::
Math
Point
*>*
MinimalBoundingSphere
::
getRandomSpherePoints
(
std
::
size_t
n_points
)
const
{
std
::
vector
<
Geo
Lib
::
Point
*>
*
pnts
=
new
std
::
vector
<
Geo
Lib
::
Point
*>
;
std
::
vector
<
Math
Lib
::
Math
Point
*>
*
pnts
=
new
std
::
vector
<
Math
Lib
::
Math
Point
*>
;
pnts
->
reserve
(
n_points
);
srand
(
static_cast
<
unsigned
>
(
time
(
NULL
))
);
...
...
@@ -184,7 +198,7 @@ std::vector<GeoLib::Point*>* MinimalBoundingSphere::getRandomSpherePoints(std::s
sum
+=
(
vec
[
i
]
*
vec
[
i
]);
}
double
const
fac
(
_radius
/
sqrt
(
sum
));
pnts
->
push_back
(
new
Geo
Lib
::
Point
(
_center
[
0
]
+
vec
[
0
]
*
fac
,
_center
[
1
]
+
vec
[
1
]
*
fac
,
_center
[
2
]
+
vec
[
2
]
*
fa
c
));
pnts
->
push_back
(
new
Math
Lib
::
Math
Point
(
_center
+
fac
*
ve
c
));
}
return
pnts
;
}
...
...
This diff is collapsed.
Click to expand it.
GeoLib/MinimalBoundingSphere.h
+
19
−
10
View file @
01670ac9
...
...
@@ -19,7 +19,7 @@
#include
<vector>
#include
"MathLib/Vector3.h"
#include
"Point.h"
#include
"
MathLib/Math
Point.h"
namespace
GeoLib
{
...
...
@@ -33,28 +33,33 @@ public:
/// Copy constructor
MinimalBoundingSphere
(
MinimalBoundingSphere
const
&
)
=
default
;
/// Point-Sphere
MinimalBoundingSphere
(
Geo
Lib
::
Point
const
&
p
,
double
radius
=
std
::
numeric_limits
<
double
>::
epsilon
());
MinimalBoundingSphere
(
Math
Lib
::
Math
Point
const
&
p
,
double
radius
=
std
::
numeric_limits
<
double
>::
epsilon
());
/// Bounding sphere using two points
MinimalBoundingSphere
(
Geo
Lib
::
Point
const
&
p
,
Geo
Lib
::
Point
const
&
q
);
MinimalBoundingSphere
(
Math
Lib
::
Math
Point
const
&
p
,
Math
Lib
::
Math
Point
const
&
q
);
/// Bounding sphere using three points
MinimalBoundingSphere
(
GeoLib
::
Point
const
&
p
,
GeoLib
::
Point
const
&
q
,
GeoLib
::
Point
const
&
r
);
MinimalBoundingSphere
(
MathLib
::
MathPoint
const
&
p
,
MathLib
::
MathPoint
const
&
q
,
MathLib
::
MathPoint
const
&
r
);
/// Bounding sphere using four points
MinimalBoundingSphere
(
GeoLib
::
Point
const
&
p
,
GeoLib
::
Point
const
&
q
,
GeoLib
::
Point
const
&
r
,
GeoLib
::
Point
const
&
s
);
MinimalBoundingSphere
(
MathLib
::
MathPoint
const
&
p
,
MathLib
::
MathPoint
const
&
q
,
MathLib
::
MathPoint
const
&
r
,
MathLib
::
MathPoint
const
&
s
);
/// Bounding sphere of n points
MinimalBoundingSphere
(
std
::
vector
<
Geo
Lib
::
Point
*>
const
&
points
);
MinimalBoundingSphere
(
std
::
vector
<
Math
Lib
::
Math
Point
*>
const
&
points
);
~
MinimalBoundingSphere
()
{}
/// Returns the center point of the sphere
Geo
Lib
::
Point
getCenter
()
const
{
return
Geo
Lib
::
Point
(
_center
.
getCoords
());
}
Math
Lib
::
Math
Point
getCenter
()
const
{
return
Math
Lib
::
Math
Point
(
_center
.
getCoords
());
}
/// Returns the radius of the sphere
double
getRadius
()
const
{
return
_radius
;
}
/// Returns the squared euclidean distance of a point from the sphere (for points within the sphere distance is negative)
double
pointDistanceSquared
(
Geo
Lib
::
Point
const
&
pnt
)
const
;
double
pointDistanceSquared
(
Math
Lib
::
Math
Point
const
&
pnt
)
const
;
/// Creates n_points random points located on the surface of the bounding sphere (useful for visualisation)
std
::
vector
<
GeoLib
::
Point
*>*
getRandomSpherePoints
(
std
::
size_t
n_points
)
const
;
std
::
vector
<
MathLib
::
MathPoint
*>*
getRandomSpherePoints
(
std
::
size_t
n_points
)
const
;
private
:
/// Constructor using no points
...
...
@@ -73,7 +78,11 @@ private:
* Bernd Gaertner: Fast and Robust Smallest Enclosing Balls. ESA99, pp. 325--338, 1999.
* Code based on "Smallest Enclosing Spheres" implementation by Nicolas Capens on flipcode's Developer Toolbox (www.flipcode.com)
*/
static
MinimalBoundingSphere
recurseCalculation
(
std
::
vector
<
GeoLib
::
Point
*>
sphere_points
,
std
::
size_t
start_idx
,
std
::
size_t
length
,
std
::
size_t
n_boundary_points
);
static
MinimalBoundingSphere
recurseCalculation
(
std
::
vector
<
MathLib
::
MathPoint
*>
sphere_points
,
std
::
size_t
start_idx
,
std
::
size_t
length
,
std
::
size_t
n_boundary_points
);
double
_radius
;
MathLib
::
Vector3
_center
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment