59 #ifndef OPENMESH_DECIMATER_MODNORMALDEVIATIONT_HH 60 #define OPENMESH_DECIMATER_MODNORMALDEVIATIONT_HH 66 #include <OpenMesh/Core/Utils/Property.hh> 67 #include <OpenMesh/Core/Geometry/NormalConeT.hh> 93 template <
class MeshT>
104 typedef typename Mesh::FaceHandle FaceHandle;
105 typedef typename Mesh::EdgeHandle EdgeHandle;
114 : Base(_mesh, true), mesh_(Base::
mesh())
117 mesh_.add_property(normal_cones_);
119 const bool mesh_has_normals = _mesh.has_face_normals();
120 _mesh.request_face_normals();
122 if (!mesh_has_normals)
124 omerr() <<
"Mesh has no face normals. Compute them automatically." << std::endl;
125 _mesh.update_face_normals();
132 mesh_.remove_property(normal_cones_);
133 mesh_.release_face_normals();
139 return normal_deviation_ / M_PI * 180.0;
144 normal_deviation_ = _s /
static_cast<Scalar
>(180.0) *
static_cast<Scalar
>(M_PI);
150 if (!normal_cones_.is_valid())
151 mesh_.add_property(normal_cones_);
153 typename Mesh::FaceIter f_it = mesh_.faces_begin(),
154 f_end = mesh_.faces_end();
156 for (; f_it != f_end; ++f_it)
157 mesh_.property(normal_cones_, *f_it) = NormalCone(mesh_.normal(*f_it));
176 mesh_.set_point(_ci.
v0, _ci.
p1);
179 typename Mesh::Scalar max_angle(0.0);
181 typename Mesh::FaceHandle fh, fhl, fhr;
183 if (_ci.
v0vl.is_valid()) fhl = mesh_.face_handle(_ci.
v0vl);
184 if (_ci.
vrv0.is_valid()) fhr = mesh_.face_handle(_ci.
vrv0);
186 for (; vf_it.is_valid(); ++vf_it) {
188 if (fh != _ci.
fl && fh != _ci.
fr) {
189 NormalCone nc = mesh_.property(normal_cones_, fh);
191 nc.
merge(NormalCone(mesh_.calc_face_normal(fh)));
192 if (fh == fhl) nc.
merge(mesh_.property(normal_cones_, _ci.
fl));
193 if (fh == fhr) nc.
merge(mesh_.property(normal_cones_, _ci.
fr));
195 if (nc.
angle() > max_angle) {
196 max_angle = nc.
angle();
197 if (max_angle > 0.5 * normal_deviation_)
205 mesh_.set_point(_ci.
v0, _ci.
p0);
208 return (max_angle < 0.5 * normal_deviation_ ? max_angle :
float( Base::ILLEGAL_COLLAPSE ));
213 if (_factor >= 0.0 && _factor <= 1.0) {
217 Scalar
normal_deviation = (normal_deviation_ *
static_cast<Scalar
>(180.0)/
static_cast<Scalar
>(M_PI) ) * _factor / this->error_tolerance_factor_;
219 this->error_tolerance_factor_ = _factor;
227 for (; vf_it.is_valid(); ++vf_it)
228 mesh_.property(normal_cones_, *vf_it).
229 merge(NormalCone(mesh_.normal(*vf_it)));
233 typename Mesh::FaceHandle fh;
235 if (_ci.
vlv1.is_valid()) {
236 fh = mesh_.face_handle(mesh_.opposite_halfedge_handle(_ci.
vlv1));
238 mesh_.property(normal_cones_, fh).
239 merge(mesh_.property(normal_cones_, _ci.
fl));
242 if (_ci.
v1vr.is_valid()) {
243 fh = mesh_.face_handle(mesh_.opposite_halfedge_handle(_ci.
v1vr));
245 mesh_.property(normal_cones_, fh).
246 merge(mesh_.property(normal_cones_, _ci.
fr));
255 Scalar normal_deviation_;
264 #endif // OPENMESH_DECIMATER_MODNORMALDEVIATIONT_HH defined Mesh::VertexHandle v1
Remaining vertex.
void postprocess_collapse(const CollapseInfo &_ci)
Mesh::FaceHandle fl
Left face.
Mesh::FaceHandle fr
Right face.
Scalar normal_deviation() const
Get normal deviation ( 0 .. 360 )
Mesh::Point p1
Positions of remaining vertex.
MeshT & mesh()
Access the mesh associated with the decimater.
void set_error_tolerance_factor(double _factor)
set the percentage of normal deviation
Mesh::Point p0
Position of removed vertex.
Mesh::HalfedgeHandle vrv0
void initialize()
Allocate and init normal cones.
Mesh::HalfedgeHandle vlv1
Mesh::HalfedgeHandle v0vl
Mesh::VertexHandle v0
Vertex to be removed.
Kernel::Normal Normal
Normal type.
void merge(const NormalConeT &)
merge _cone; this instance will then enclose both former cones
Scalar angle() const
returns size of cone (radius in radians)
void set_normal_deviation(Scalar _s)
Set normal deviation ( 0 .. 360 )
Kernel::VertexHandle VertexHandle
Handle for referencing the corresponding item.
Mesh::HalfedgeHandle v1vr
Kernel::VertexFaceIter VertexFaceIter
Circulator.
float collapse_priority(const CollapseInfo &_ci)
Control normals when Decimating.
Kernel::ConstVertexFaceIter ConstVertexFaceIter
Circulator.
Use Normal deviation to control decimation.
Kernel::Point Point
Coordinate type.
ModNormalDeviationT(MeshT &_mesh, float _max_dev=180.0)
Constructor.
~ModNormalDeviationT()
Destructor.
Kernel::Scalar Scalar
Scalar type.