2011-11-15 19:23:13 +00:00
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2015-01-05 15:34:10 +00:00
|
|
|
* Copyright (C) 2001-2015 by Computer Graphics Group, RWTH Aachen *
|
2011-11-15 19:23:13 +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/>. *
|
|
|
|
|
* *
|
2011-11-16 09:45:08 +00:00
|
|
|
\*===========================================================================*/
|
2011-11-15 19:23:13 +00:00
|
|
|
|
|
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
2012-10-08 07:25:00 +00:00
|
|
|
* $Revision$ *
|
|
|
|
|
* $Date$ *
|
2011-11-15 19:23:13 +00:00
|
|
|
* *
|
2011-11-16 09:45:08 +00:00
|
|
|
\*===========================================================================*/
|
2011-11-15 19:23:13 +00:00
|
|
|
|
|
|
|
|
/** \file ModAspectRatioT.hh
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
//
|
|
|
|
|
// CLASS ModAspectRatioT
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
2011-11-16 09:45:08 +00:00
|
|
|
#ifndef OPENMESH_DECIMATER_MODASPECTRATIOT_HH
|
|
|
|
|
#define OPENMESH_DECIMATER_MODASPECTRATIOT_HH
|
2011-11-15 19:23:13 +00:00
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#include <OpenMesh/Tools/Decimater/ModBaseT.hh>
|
|
|
|
|
#include <OpenMesh/Core/Utils/Property.hh>
|
|
|
|
|
|
|
|
|
|
//== NAMESPACES ===============================================================
|
|
|
|
|
|
2011-11-16 09:45:08 +00:00
|
|
|
namespace OpenMesh {
|
2011-11-15 19:23:13 +00:00
|
|
|
namespace Decimater {
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
2011-11-16 09:45:08 +00:00
|
|
|
/** \brief Use aspect ratio to control decimation
|
|
|
|
|
*
|
|
|
|
|
* This module computes the aspect ratio.
|
|
|
|
|
*
|
|
|
|
|
* In binary mode, the collapse is legal if:
|
|
|
|
|
* - The aspect ratio after the collapse is greater
|
|
|
|
|
* - The aspect ratio after the collapse is greater than the given minimum
|
|
|
|
|
*
|
|
|
|
|
* In continuous mode the collapse is illegal if:
|
|
|
|
|
* - The aspect ratio after the collapse is smaller than the given minimum
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-08 15:15:17 +00:00
|
|
|
template<class MeshT>
|
|
|
|
|
class ModAspectRatioT: public ModBaseT<MeshT> {
|
2011-11-16 09:45:08 +00:00
|
|
|
public:
|
2011-11-15 19:23:13 +00:00
|
|
|
|
2014-05-09 08:12:41 +00:00
|
|
|
DECIMATING_MODULE( ModAspectRatioT, MeshT, AspectRatio )
|
2011-11-16 09:45:08 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
|
|
typedef typename Mesh::Scalar Scalar;
|
|
|
|
|
typedef typename Mesh::Point Point;
|
|
|
|
|
|
|
|
|
|
/// constructor
|
2012-08-08 15:15:17 +00:00
|
|
|
ModAspectRatioT(MeshT& _mesh, float _min_aspect = 5.0, bool _is_binary =
|
2011-11-16 09:45:08 +00:00
|
|
|
true) :
|
2012-08-08 15:15:17 +00:00
|
|
|
Base(_mesh, _is_binary), mesh_(Base::mesh()), min_aspect_(
|
2011-11-16 09:45:08 +00:00
|
|
|
1.0 / _min_aspect) {
|
|
|
|
|
mesh_.add_property(aspect_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// destructor
|
|
|
|
|
~ModAspectRatioT() {
|
|
|
|
|
mesh_.remove_property(aspect_);
|
|
|
|
|
}
|
2011-11-15 19:23:13 +00:00
|
|
|
|
2011-11-16 09:45:08 +00:00
|
|
|
/// get aspect ratio
|
|
|
|
|
float aspect_ratio() const {
|
|
|
|
|
return 1.0 / min_aspect_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// set aspect ratio
|
|
|
|
|
void set_aspect_ratio(float _f) {
|
|
|
|
|
min_aspect_ = 1.0 / _f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// precompute face aspect ratio
|
|
|
|
|
void initialize();
|
|
|
|
|
|
|
|
|
|
/// Returns the collapse priority
|
|
|
|
|
float collapse_priority(const CollapseInfo& _ci);
|
|
|
|
|
|
|
|
|
|
/// update aspect ratio of one-ring
|
|
|
|
|
void preprocess_collapse(const CollapseInfo& _ci);
|
|
|
|
|
|
2012-09-19 16:15:39 +00:00
|
|
|
/// set percentage of aspect ratio
|
|
|
|
|
void set_error_tolerance_factor(double _factor);
|
|
|
|
|
|
2011-11-16 09:45:08 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
/** \brief return aspect ratio (length/height) of triangle
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
Scalar aspectRatio(const Point& _v0, const Point& _v1, const Point& _v2);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
Mesh& mesh_;
|
|
|
|
|
float min_aspect_;
|
|
|
|
|
FPropHandleT<float> aspect_;
|
|
|
|
|
};
|
2011-11-15 19:23:13 +00:00
|
|
|
|
|
|
|
|
//=============================================================================
|
2011-11-16 09:45:08 +00:00
|
|
|
}// END_NS_DECIMATER
|
2011-11-15 19:23:13 +00:00
|
|
|
} // END_NS_OPENMESH
|
|
|
|
|
//=============================================================================
|
2012-02-27 07:19:49 +00:00
|
|
|
#if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_DECIMATER_MODASPECTRATIOT_C)
|
2011-11-16 09:45:08 +00:00
|
|
|
#define OPENMESH_DECIMATER_MODASPECTRATIOT_TEMPLATES
|
2011-11-15 19:23:13 +00:00
|
|
|
#include "ModAspectRatioT.cc"
|
|
|
|
|
#endif
|
|
|
|
|
//=============================================================================
|
2011-11-16 09:45:08 +00:00
|
|
|
#endif // OPENMESH_DECIMATER_MODASPECTRATIOT_HH defined
|
2011-11-15 19:23:13 +00:00
|
|
|
//=============================================================================
|
|
|
|
|
|