2009-06-04 08:46:29 +00:00
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
|
|
|
|
* OpenMesh *
|
2013-08-11 10:26:11 +00:00
|
|
|
* Copyright (C) 2001-2013 by Computer Graphics Group, RWTH Aachen *
|
2009-06-04 08:46:29 +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/>. *
|
|
|
|
|
* *
|
|
|
|
|
\*===========================================================================*/
|
|
|
|
|
|
|
|
|
|
/*===========================================================================*\
|
|
|
|
|
* *
|
|
|
|
|
* $Revision$ *
|
|
|
|
|
* $Date$ *
|
|
|
|
|
* *
|
|
|
|
|
\*===========================================================================*/
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef OPENMESHAPPS_DECIMATERVIEWERWIDGET_HH
|
|
|
|
|
#define OPENMESHAPPS_DECIMATERVIEWERWIDGET_HH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== INCLUDES =================================================================
|
|
|
|
|
|
|
|
|
|
#if !defined(OM_USE_OSG)
|
|
|
|
|
# define OM_USE_OSG 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <qtimer.h>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
//--------------------
|
|
|
|
|
#include <OpenMesh/Core/IO/MeshIO.hh>
|
|
|
|
|
//--------------------
|
|
|
|
|
#if OM_USE_OSG
|
|
|
|
|
# include <OpenMesh/Tools/Kernel_OSG/TriMesh_OSGArrayKernelT.hh>
|
|
|
|
|
# define DEFAULT_TRAITS Kernel_OSG::Traits
|
|
|
|
|
# define TRIMESH_KERNEL Kernel_OSG::TriMesh_OSGArrayKernelT
|
|
|
|
|
#else
|
|
|
|
|
//--------------------
|
|
|
|
|
# include <OpenMesh/Core/Mesh/Traits.hh>
|
|
|
|
|
# include <OpenMesh/Core/Mesh/TriMesh_ArrayKernelT.hh>
|
|
|
|
|
# define DEFAULT_TRAITS DefaultTraits
|
|
|
|
|
# define TRIMESH_KERNEL TriMesh_ArrayKernelT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <OpenMesh/Apps/QtViewer/MeshViewerWidgetT.hh>
|
|
|
|
|
|
|
|
|
|
#include <OpenMesh/Tools/Decimater/DecimaterT.hh>
|
|
|
|
|
#include <OpenMesh/Tools/Decimater/ModNormalFlippingT.hh>
|
|
|
|
|
#include <OpenMesh/Tools/Decimater/ModQuadricT.hh>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using namespace OpenMesh;
|
|
|
|
|
|
|
|
|
|
struct MyTraits : public DEFAULT_TRAITS
|
|
|
|
|
{
|
|
|
|
|
VertexAttributes ( Attributes::Normal );
|
|
|
|
|
FaceAttributes ( Attributes::Normal );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef TRIMESH_KERNEL<MyTraits> mesh_t;
|
|
|
|
|
typedef MeshViewerWidgetT<mesh_t> MeshViewerWidget;
|
|
|
|
|
|
|
|
|
|
//== CLASS DEFINITION =========================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DecimaterViewerWidget : public MeshViewerWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
typedef MeshViewerWidget inherited_t;
|
|
|
|
|
|
|
|
|
|
typedef Decimater::DecimaterT<mesh_t> decimater_t;
|
2012-08-15 09:52:01 +00:00
|
|
|
typedef Decimater::ModQuadricT< mesh_t >::Handle mod_quadric_t;
|
|
|
|
|
typedef Decimater::ModNormalFlippingT< mesh_t >::Handle mod_nf_t;
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
// object types
|
|
|
|
|
typedef std::auto_ptr< decimater_t > decimater_o;
|
|
|
|
|
|
|
|
|
|
/// default constructor
|
2009-02-09 12:39:44 +00:00
|
|
|
DecimaterViewerWidget(QWidget* _parent=0)
|
2009-02-06 13:37:46 +00:00
|
|
|
: MeshViewerWidget(_parent), steps_(1)
|
|
|
|
|
{
|
|
|
|
|
timer_ = new QTimer(this);
|
|
|
|
|
|
|
|
|
|
connect( timer_, SIGNAL(timeout()), SLOT(animate()) );
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 12:09:36 +00:00
|
|
|
DecimaterViewerWidget() :
|
|
|
|
|
animate_(false),
|
|
|
|
|
timer_(0),
|
|
|
|
|
steps_(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-06 13:37:46 +00:00
|
|
|
/// destructor
|
|
|
|
|
~DecimaterViewerWidget()
|
|
|
|
|
{
|
|
|
|
|
delete timer_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public: // inherited
|
|
|
|
|
|
|
|
|
|
bool open_mesh(const char* _filename, OpenMesh::IO::Options _opt)
|
|
|
|
|
{
|
|
|
|
|
bool rc;
|
|
|
|
|
|
|
|
|
|
if ( (rc = inherited_t::open_mesh( _filename, _opt )) )
|
|
|
|
|
{
|
|
|
|
|
std::cout << "prepare decimater" << std::endl;
|
|
|
|
|
|
2013-08-21 12:03:51 +00:00
|
|
|
decimater_ = decimater_o ( new decimater_t ( mesh() ) );
|
2012-08-15 09:52:01 +00:00
|
|
|
|
|
|
|
|
decimater_->add(mod_quadric_);
|
|
|
|
|
decimater_->module(mod_quadric_).set_binary(false);
|
|
|
|
|
|
|
|
|
|
decimater_->add(mod_nf_);
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
decimater_->initialize();
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
|
|
|
|
|
|
void animate( void );
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
virtual void keyPressEvent(QKeyEvent* _event);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
bool animate_;
|
|
|
|
|
QTimer *timer_;
|
|
|
|
|
|
|
|
|
|
decimater_o decimater_;
|
2012-08-15 09:52:01 +00:00
|
|
|
mod_quadric_t mod_quadric_;
|
|
|
|
|
mod_nf_t mod_nf_;
|
2009-02-06 13:37:46 +00:00
|
|
|
|
|
|
|
|
size_t steps_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
#endif // OPENMESHAPPS_DECIMATERVIEWERWIDGET_HH defined
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|