2011-11-07 07:03:56 +00:00
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2012-10-08 07:33:20 +00:00
|
|
|
* Copyright (C) 2001-2012 by Computer Graphics Group, RWTH Aachen *
|
2011-11-07 07:03:56 +00:00
|
|
|
* www.openmesh.org *
|
|
|
|
|
* *
|
|
|
|
|
*---------------------------------------------------------------------------*
|
|
|
|
|
* This file is part of OpenMesh. *
|
|
|
|
|
* *
|
|
|
|
|
* OpenMesh is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of *
|
|
|
|
|
* the License, or (at your option) any later version with the *
|
|
|
|
|
* following exceptions: *
|
|
|
|
|
* *
|
|
|
|
|
* If other files instantiate templates or use macros *
|
|
|
|
|
* or inline functions from this file, or you compile this file and *
|
|
|
|
|
* link it with other files to produce an executable, this file does *
|
|
|
|
|
* not by itself cause the resulting executable to be covered by the *
|
|
|
|
|
* GNU Lesser General Public License. This exception does not however *
|
|
|
|
|
* invalidate any other reasons why the executable file might be *
|
|
|
|
|
* covered by the GNU Lesser General Public License. *
|
|
|
|
|
* *
|
|
|
|
|
* OpenMesh is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* GNU Lesser General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU LesserGeneral Public *
|
|
|
|
|
* License along with OpenMesh. If not, *
|
|
|
|
|
* see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
* *
|
|
|
|
|
\*===========================================================================*/
|
|
|
|
|
|
|
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
2012-10-08 07:25:00 +00:00
|
|
|
* $Revision$ *
|
|
|
|
|
* $Date$ *
|
2011-11-07 07:03:56 +00:00
|
|
|
* *
|
|
|
|
|
\*===========================================================================*/
|
|
|
|
|
|
|
|
|
|
/** \file ModHausdorffT.cc
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
//
|
|
|
|
|
// CLASS ModHausdorffT - IMPLEMENTATION
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
2011-11-16 09:45:08 +00:00
|
|
|
#define OPENMESH_DECIMATER_MODHAUSDORFFT_C
|
2011-11-07 07:03:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#include "ModHausdorffT.hh"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== NAMESPACES ===============================================================
|
|
|
|
|
|
|
|
|
|
namespace OpenMesh {
|
|
|
|
|
namespace Decimater {
|
|
|
|
|
|
|
|
|
|
//== IMPLEMENTATION ==========================================================
|
|
|
|
|
|
2012-08-08 15:15:17 +00:00
|
|
|
template <class MeshT>
|
|
|
|
|
typename ModHausdorffT<MeshT>::Scalar
|
|
|
|
|
ModHausdorffT<MeshT>::
|
2011-11-09 08:47:25 +00:00
|
|
|
distPointTriangleSquared( const Point& _p,
|
|
|
|
|
const Point& _v0,
|
|
|
|
|
const Point& _v1,
|
2012-09-27 10:24:03 +00:00
|
|
|
const Point& _v2 )
|
2011-11-07 07:18:15 +00:00
|
|
|
{
|
2012-09-14 14:26:28 +00:00
|
|
|
const Point v0v1 = _v1 - _v0;
|
|
|
|
|
const Point v0v2 = _v2 - _v0;
|
|
|
|
|
const Point n = v0v1 % v0v2; // not normalized !
|
|
|
|
|
const double d = n.sqrnorm();
|
2011-11-07 07:18:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// Check if the triangle is degenerated
|
|
|
|
|
if (d < FLT_MIN && d > -FLT_MIN) {
|
|
|
|
|
return -1.0;
|
|
|
|
|
}
|
2012-09-14 14:26:28 +00:00
|
|
|
const double invD = 1.0 / d;
|
2011-11-07 07:18:15 +00:00
|
|
|
|
|
|
|
|
// these are not needed for every point, should still perform
|
|
|
|
|
// better with many points against one triangle
|
2012-09-14 14:26:28 +00:00
|
|
|
const Point v1v2 = _v2 - _v1;
|
|
|
|
|
const double inv_v0v2_2 = 1.0 / v0v2.sqrnorm();
|
|
|
|
|
const double inv_v0v1_2 = 1.0 / v0v1.sqrnorm();
|
|
|
|
|
const double inv_v1v2_2 = 1.0 / v1v2.sqrnorm();
|
2011-11-07 07:18:15 +00:00
|
|
|
|
|
|
|
|
|
2011-11-09 08:47:25 +00:00
|
|
|
Point v0p = _p - _v0;
|
|
|
|
|
Point t = v0p % n;
|
2011-11-07 07:18:15 +00:00
|
|
|
double s01, s02, s12;
|
2012-09-14 14:26:28 +00:00
|
|
|
const double a = (t | v0v2) * -invD;
|
|
|
|
|
const double b = (t | v0v1) * invD;
|
2011-11-07 07:18:15 +00:00
|
|
|
|
|
|
|
|
if (a < 0)
|
|
|
|
|
{
|
|
|
|
|
// Calculate the distance to an edge or a corner vertex
|
|
|
|
|
s02 = ( v0v2 | v0p ) * inv_v0v2_2;
|
|
|
|
|
if (s02 < 0.0)
|
|
|
|
|
{
|
|
|
|
|
s01 = ( v0v1 | v0p ) * inv_v0v1_2;
|
|
|
|
|
if (s01 <= 0.0) {
|
|
|
|
|
v0p = _v0;
|
|
|
|
|
} else if (s01 >= 1.0) {
|
|
|
|
|
v0p = _v1;
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v0 + v0v1 * s01;
|
|
|
|
|
}
|
|
|
|
|
} else if (s02 > 1.0) {
|
|
|
|
|
s12 = ( v1v2 | ( _p - _v1 )) * inv_v1v2_2;
|
|
|
|
|
if (s12 >= 1.0) {
|
|
|
|
|
v0p = _v2;
|
|
|
|
|
} else if (s12 <= 0.0) {
|
|
|
|
|
v0p = _v1;
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v1 + v1v2 * s12;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v0 + v0v2 * s02;
|
|
|
|
|
}
|
|
|
|
|
} else if (b < 0.0) {
|
|
|
|
|
// Calculate the distance to an edge or a corner vertex
|
|
|
|
|
s01 = ( v0v1 | v0p ) * inv_v0v1_2;
|
|
|
|
|
if (s01 < 0.0)
|
|
|
|
|
{
|
2012-09-14 14:26:28 +00:00
|
|
|
const Point n = v0v1 % v0v2; // not normalized !
|
2011-11-07 07:18:15 +00:00
|
|
|
s02 = ( v0v2 | v0p ) * inv_v0v2_2;
|
|
|
|
|
if (s02 <= 0.0) {
|
|
|
|
|
v0p = _v0;
|
|
|
|
|
} else if (s02 >= 1.0) {
|
|
|
|
|
v0p = _v2;
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v0 + v0v2 * s02;
|
|
|
|
|
}
|
|
|
|
|
} else if (s01 > 1.0) {
|
|
|
|
|
s12 = ( v1v2 | ( _p - _v1 )) * inv_v1v2_2;
|
|
|
|
|
if (s12 >= 1.0) {
|
|
|
|
|
v0p = _v2;
|
|
|
|
|
} else if (s12 <= 0.0) {
|
|
|
|
|
v0p = _v1;
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v1 + v1v2 * s12;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v0 + v0v1 * s01;
|
|
|
|
|
}
|
|
|
|
|
} else if (a+b > 1.0) {
|
|
|
|
|
// Calculate the distance to an edge or a corner vertex
|
|
|
|
|
s12 = ( v1v2 | ( _p - _v1 )) * inv_v1v2_2;
|
|
|
|
|
if (s12 >= 1.0) {
|
|
|
|
|
s02 = ( v0v2 | v0p ) * inv_v0v2_2;
|
|
|
|
|
if (s02 <= 0.0) {
|
|
|
|
|
v0p = _v0;
|
|
|
|
|
} else if (s02 >= 1.0) {
|
|
|
|
|
v0p = _v2;
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v0 + v0v2*s02;
|
|
|
|
|
}
|
|
|
|
|
} else if (s12 <= 0.0) {
|
|
|
|
|
s01 = ( v0v1 | v0p ) * inv_v0v1_2;
|
|
|
|
|
if (s01 <= 0.0) {
|
|
|
|
|
v0p = _v0;
|
|
|
|
|
} else if (s01 >= 1.0) {
|
|
|
|
|
v0p = _v1;
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v0 + v0v1 * s01;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
v0p = _v1 + v1v2 * s12;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Calculate the distance to an interior point of the triangle
|
2012-09-27 10:24:03 +00:00
|
|
|
return ( (_p - n*((n|v0p) * invD)) - _p).sqrnorm();
|
2011-11-07 07:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
2012-09-27 10:24:03 +00:00
|
|
|
return (v0p - _p).sqrnorm();
|
2011-11-07 07:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-08-08 15:15:17 +00:00
|
|
|
template <class MeshT>
|
2011-11-07 07:03:56 +00:00
|
|
|
void
|
2012-08-08 15:15:17 +00:00
|
|
|
ModHausdorffT<MeshT>::
|
2011-11-07 07:03:56 +00:00
|
|
|
initialize()
|
|
|
|
|
{
|
|
|
|
|
typename Mesh::FIter f_it(mesh_.faces_begin()), f_end(mesh_.faces_end());
|
|
|
|
|
|
|
|
|
|
for (; f_it!=f_end; ++f_it)
|
|
|
|
|
mesh_.property(points_, f_it).clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
2012-08-08 15:15:17 +00:00
|
|
|
template <class MeshT>
|
2011-11-07 07:03:56 +00:00
|
|
|
float
|
2012-08-08 15:15:17 +00:00
|
|
|
ModHausdorffT<MeshT>::
|
2011-11-07 07:03:56 +00:00
|
|
|
collapse_priority(const CollapseInfo& _ci)
|
|
|
|
|
{
|
|
|
|
|
std::vector<FaceHandle> faces; faces.reserve(20);
|
|
|
|
|
typename Mesh::VertexFaceIter vf_it;
|
|
|
|
|
typename Mesh::FaceHandle fh;
|
2012-09-28 09:33:48 +00:00
|
|
|
const typename Mesh::Scalar sqr_tolerace = tolerance_*tolerance_;
|
2011-11-07 07:03:56 +00:00
|
|
|
typename Mesh::CFVIter fv_it;
|
|
|
|
|
bool ok;
|
|
|
|
|
|
2013-01-29 09:00:06 +00:00
|
|
|
// Clear the temporary point storage
|
|
|
|
|
tmp_points_.clear();
|
|
|
|
|
|
2011-11-07 07:03:56 +00:00
|
|
|
// collect all points to be tested
|
|
|
|
|
// collect all faces to be tested against
|
|
|
|
|
for (vf_it=mesh_.vf_iter(_ci.v0); vf_it; ++vf_it) {
|
|
|
|
|
fh = vf_it.handle();
|
|
|
|
|
|
|
|
|
|
if (fh != _ci.fl && fh != _ci.fr)
|
|
|
|
|
faces.push_back(fh);
|
|
|
|
|
|
|
|
|
|
Points& pts = mesh_.property(points_, fh);
|
2013-01-29 09:00:06 +00:00
|
|
|
std::copy(pts.begin(), pts.end(), std::back_inserter(tmp_points_));
|
2011-11-07 07:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// add point to be removed
|
2013-01-29 09:00:06 +00:00
|
|
|
tmp_points_.push_back(_ci.p0);
|
2011-11-07 07:03:56 +00:00
|
|
|
|
|
|
|
|
// setup iterators
|
|
|
|
|
typename std::vector<FaceHandle>::iterator fh_it, fh_end(faces.end());
|
2013-01-29 09:00:06 +00:00
|
|
|
typename Points::const_iterator p_it, p_end(tmp_points_.end());
|
2011-11-07 07:03:56 +00:00
|
|
|
|
|
|
|
|
// simulate collapse
|
|
|
|
|
mesh_.set_point(_ci.v0, _ci.p1);
|
|
|
|
|
|
|
|
|
|
// for each point: try to find a face such that error is < tolerance
|
|
|
|
|
ok = true;
|
2012-09-14 14:26:28 +00:00
|
|
|
|
2013-01-29 09:00:06 +00:00
|
|
|
for (p_it=tmp_points_.begin(); ok && p_it!=p_end; ++p_it) {
|
2011-11-07 07:03:56 +00:00
|
|
|
ok = false;
|
|
|
|
|
|
|
|
|
|
for (fh_it=faces.begin(); !ok && fh_it!=fh_end; ++fh_it) {
|
|
|
|
|
const Point& p0 = mesh_.point(fv_it=mesh_.cfv_iter(*fh_it));
|
|
|
|
|
const Point& p1 = mesh_.point(++fv_it);
|
|
|
|
|
const Point& p2 = mesh_.point(++fv_it);
|
|
|
|
|
|
2012-09-27 10:24:03 +00:00
|
|
|
if ( distPointTriangleSquared(*p_it, p0, p1, p2) <= sqr_tolerace)
|
2011-11-07 07:03:56 +00:00
|
|
|
ok = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// undo simulation changes
|
|
|
|
|
mesh_.set_point(_ci.v0, _ci.p0);
|
|
|
|
|
|
|
|
|
|
return ( ok ? Base::LEGAL_COLLAPSE : Base::ILLEGAL_COLLAPSE );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
2012-09-19 16:15:39 +00:00
|
|
|
template<class MeshT>
|
|
|
|
|
void ModHausdorffT<MeshT>::set_error_tolerance_factor(double _factor) {
|
|
|
|
|
if (_factor >= 0.0 && _factor <= 1.0) {
|
|
|
|
|
// the smaller the factor, the smaller tolerance gets
|
|
|
|
|
// thus creating a stricter constraint
|
|
|
|
|
// division by error_tolerance_factor_ is for normalization
|
|
|
|
|
Scalar tolerance = tolerance_ * _factor / this->error_tolerance_factor_;
|
|
|
|
|
set_tolerance(tolerance);
|
|
|
|
|
this->error_tolerance_factor_ = _factor;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2011-11-07 07:03:56 +00:00
|
|
|
|
2012-08-08 15:15:17 +00:00
|
|
|
template <class MeshT>
|
2011-11-07 07:03:56 +00:00
|
|
|
void
|
2012-08-08 15:15:17 +00:00
|
|
|
ModHausdorffT<MeshT>::
|
2011-11-07 07:03:56 +00:00
|
|
|
postprocess_collapse(const CollapseInfo& _ci)
|
|
|
|
|
{
|
|
|
|
|
typename Mesh::VertexFaceIter vf_it;
|
|
|
|
|
FaceHandle fh;
|
|
|
|
|
std::vector<FaceHandle> faces;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// collect points & neighboring triangles
|
|
|
|
|
|
2013-01-30 07:03:04 +00:00
|
|
|
tmp_points_.clear();
|
2011-11-07 07:03:56 +00:00
|
|
|
faces.reserve(20);
|
|
|
|
|
|
|
|
|
|
// collect active faces and their points
|
|
|
|
|
for (vf_it=mesh_.vf_iter(_ci.v1); vf_it; ++vf_it) {
|
|
|
|
|
fh = vf_it.handle();
|
|
|
|
|
faces.push_back(fh);
|
|
|
|
|
|
|
|
|
|
Points& pts = mesh_.property(points_, fh);
|
2013-01-30 07:01:51 +00:00
|
|
|
std::copy(pts.begin(), pts.end(), std::back_inserter(tmp_points_));
|
2011-11-07 07:03:56 +00:00
|
|
|
pts.clear();
|
|
|
|
|
}
|
|
|
|
|
if (faces.empty()) return; // should not happen anyway...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// collect points of the 2 deleted faces
|
|
|
|
|
if ((fh=_ci.fl).is_valid()) {
|
|
|
|
|
Points& pts = mesh_.property(points_, fh);
|
2013-01-30 07:01:51 +00:00
|
|
|
std::copy(pts.begin(), pts.end(), std::back_inserter(tmp_points_));
|
2011-11-07 07:03:56 +00:00
|
|
|
pts.clear();
|
|
|
|
|
}
|
|
|
|
|
if ((fh=_ci.fr).is_valid()) {
|
|
|
|
|
Points& pts = mesh_.property(points_, fh);
|
2013-01-30 07:01:51 +00:00
|
|
|
std::copy(pts.begin(), pts.end(), std::back_inserter(tmp_points_));
|
2011-11-07 07:03:56 +00:00
|
|
|
pts.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// add the deleted point
|
2013-01-30 07:01:51 +00:00
|
|
|
tmp_points_.push_back(_ci.p0);
|
2011-11-07 07:03:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// setup iterators
|
|
|
|
|
typename std::vector<FaceHandle>::iterator fh_it, fh_end(faces.end());
|
2013-01-30 07:01:51 +00:00
|
|
|
typename Points::const_iterator p_it, p_end(tmp_points_.end());
|
2011-11-07 07:03:56 +00:00
|
|
|
|
|
|
|
|
// re-distribute points
|
|
|
|
|
Scalar emin, e;
|
|
|
|
|
typename Mesh::CFVIter fv_it;
|
|
|
|
|
|
2013-01-30 07:01:51 +00:00
|
|
|
for (p_it=tmp_points_.begin(); p_it!=p_end; ++p_it) {
|
2011-11-07 07:03:56 +00:00
|
|
|
emin = FLT_MAX;
|
|
|
|
|
|
|
|
|
|
for (fh_it=faces.begin(); fh_it!=fh_end; ++fh_it) {
|
|
|
|
|
const Point& p0 = mesh_.point(fv_it=mesh_.cfv_iter(*fh_it));
|
|
|
|
|
const Point& p1 = mesh_.point(++fv_it);
|
|
|
|
|
const Point& p2 = mesh_.point(++fv_it);
|
|
|
|
|
|
2012-09-27 10:24:03 +00:00
|
|
|
e = distPointTriangleSquared(*p_it, p0, p1, p2);
|
2011-11-07 07:03:56 +00:00
|
|
|
if (e < emin) {
|
|
|
|
|
emin = e;
|
|
|
|
|
fh = *fh_it;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mesh_.property(points_, fh).push_back(*p_it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
2012-08-08 15:15:17 +00:00
|
|
|
template <class MeshT>
|
|
|
|
|
typename ModHausdorffT<MeshT>::Scalar
|
|
|
|
|
ModHausdorffT<MeshT>::
|
2011-11-07 07:03:56 +00:00
|
|
|
compute_sqr_error(FaceHandle _fh, const Point& _p) const
|
|
|
|
|
{
|
|
|
|
|
typename Mesh::CFVIter fv_it = mesh_.cfv_iter(_fh);
|
|
|
|
|
const Point& p0 = mesh_.point(fv_it);
|
|
|
|
|
const Point& p1 = mesh_.point(++fv_it);
|
|
|
|
|
const Point& p2 = mesh_.point(++fv_it);
|
|
|
|
|
|
|
|
|
|
const Points& points = mesh_.property(points_, _fh);
|
|
|
|
|
typename Points::const_iterator p_it = points.begin();
|
|
|
|
|
typename Points::const_iterator p_end = points.end();
|
|
|
|
|
|
|
|
|
|
Point dummy;
|
|
|
|
|
Scalar e;
|
2012-09-27 10:24:03 +00:00
|
|
|
Scalar emax = distPointTriangleSquared(_p, p0, p1, p2);
|
2011-11-07 07:03:56 +00:00
|
|
|
|
2012-09-14 14:26:28 +00:00
|
|
|
|
2012-09-28 09:33:48 +00:00
|
|
|
|
2011-11-07 07:03:56 +00:00
|
|
|
for (; p_it!=p_end; ++p_it) {
|
2012-09-27 10:24:03 +00:00
|
|
|
e = distPointTriangleSquared(*p_it, p0, p1, p2);
|
2011-11-07 07:03:56 +00:00
|
|
|
if (e > emax)
|
|
|
|
|
emax = e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return emax;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//=============================================================================
|