208 lines
3.5 KiB
C++
208 lines
3.5 KiB
C++
#include <GL/glew.h>
|
|
#include <qgl.h>
|
|
#include <wrap/gl/trimesh.h>
|
|
#include <wrap/gui/trackball.h>
|
|
#include <segmentator.h>
|
|
#include <sim/tri_pde_integrator.h>
|
|
#include <vcg/complex/trimesh/update/bounding.h>
|
|
#include <wrap/io_trimesh/export_ply.h>
|
|
#include <segmentform.h>
|
|
#include <qpushbutton.h>
|
|
#include <qtimer.h>
|
|
|
|
class SimpleGLWidget: public QGLWidget{
|
|
|
|
Q_OBJECT
|
|
|
|
private :
|
|
int _H;
|
|
int _W;
|
|
vcg::Trackball TrackM;
|
|
vcg::Trackball TrackS;
|
|
double zoom;
|
|
GLdouble projection[16];
|
|
GLdouble modelMatrix[16];
|
|
GLint viewport[4];
|
|
bool _showslides;
|
|
int _numslide;
|
|
bool wire;
|
|
bool blocked;
|
|
bool extForces;
|
|
bool intForces;
|
|
bool resultForces;
|
|
bool continue_int;
|
|
bool rawImage;
|
|
GLuint texName;
|
|
|
|
//Segmentator *s;
|
|
//QTimer *timer;
|
|
//vcg::GlTrimesh<Segmentator::MyTriMesh> *Wrap;
|
|
|
|
public:
|
|
vcg::Point3f CenterExtraction;
|
|
QString path;
|
|
SegmentForm *w;
|
|
SimpleGLWidget( QWidget * parent = 0, const char * name = 0, const QGLWidget * shareWidget = 0, WFlags f = 0 );
|
|
|
|
virtual void glDraw();
|
|
//virtual void paintEvent ( QPaintEvent * ) ;
|
|
void resizeGL( int w, int h );
|
|
virtual void mousePressEvent ( QMouseEvent * e );
|
|
virtual void mouseReleaseEvent(QMouseEvent * e );
|
|
virtual void mouseMoveEvent ( QMouseEvent * e );
|
|
virtual void wheelEvent ( QWheelEvent * e );
|
|
virtual void keyPressEvent(QKeyEvent *k);
|
|
virtual void initializeGL();
|
|
virtual void SaveMatrix();
|
|
virtual void Save();
|
|
void LoadMatrix();
|
|
void LoadTextureJpg(QString path,int level);
|
|
void LoadTextureRaw(int level);
|
|
void drawSlide();
|
|
void SmoothMesh();
|
|
void Step();
|
|
void SetExtractionParameters();
|
|
void WriteInfo();
|
|
void ClearMesh();
|
|
void OpenDirectory();
|
|
void OpenRaw();
|
|
void MarchingCube();
|
|
void UpdateBBMesh();
|
|
void setColor();
|
|
//void MarchingCubesExtraction();
|
|
//virtual void keyPressEvent(QKeyEvent *qk);
|
|
|
|
public slots:
|
|
|
|
void Open()
|
|
{
|
|
OpenDirectory();
|
|
}
|
|
|
|
void OpenRawFile()
|
|
{
|
|
OpenRaw();
|
|
}
|
|
|
|
void ShowSlides()
|
|
{
|
|
_showslides=!_showslides;
|
|
UpdateBBMesh();
|
|
repaint();
|
|
}
|
|
|
|
void SetWire()
|
|
{
|
|
wire=!wire;
|
|
repaint();
|
|
}
|
|
|
|
void SetShowBlocked()
|
|
{
|
|
blocked=!blocked;
|
|
repaint();
|
|
}
|
|
|
|
void ShowExternalForces()
|
|
{
|
|
extForces=!extForces;
|
|
repaint();
|
|
}
|
|
|
|
void ShowInternalForces()
|
|
{
|
|
intForces=!intForces;
|
|
repaint();
|
|
}
|
|
|
|
void ShowResultForces()
|
|
{
|
|
resultForces=!resultForces;
|
|
repaint();
|
|
}
|
|
|
|
void Smooth()
|
|
{
|
|
SmoothMesh();
|
|
repaint();
|
|
}
|
|
|
|
void SavePly()
|
|
{
|
|
Save();
|
|
}
|
|
|
|
void Apply()
|
|
{
|
|
SetExtractionParameters();
|
|
}
|
|
|
|
void Extract()
|
|
{
|
|
//UpdateBBMesh();
|
|
continue_int=!continue_int;
|
|
//if (continue_int)
|
|
//{
|
|
// _showslides=false;
|
|
// w->SlidesButton->setOn(false);
|
|
// //((SegmentForm *)this->parent())->SlidesButton->setOn(false);
|
|
//}
|
|
//else
|
|
//{
|
|
// _showslides=true;
|
|
// w->SlidesButton->setOn(true);
|
|
// //((SegmentForm *)this->parent())->SlidesButton->setOn(true);
|
|
//}
|
|
repaint();
|
|
}
|
|
|
|
//void Extract()
|
|
//{
|
|
// //UpdateBBMesh();
|
|
// continue_int=!continue_int;
|
|
// //if (continue_int)
|
|
// //{
|
|
// // _showslides=false;
|
|
// // w->SlidesButton->setOn(false);
|
|
// // //((SegmentForm *)this->parent())->SlidesButton->setOn(false);
|
|
// //}
|
|
// //else
|
|
// //{
|
|
// // _showslides=true;
|
|
// // w->SlidesButton->setOn(true);
|
|
// // //((SegmentForm *)this->parent())->SlidesButton->setOn(true);
|
|
// //}
|
|
// repaint();
|
|
//}
|
|
|
|
void Update()
|
|
{
|
|
Step();
|
|
}
|
|
|
|
|
|
void Clear()
|
|
{
|
|
ClearMesh();
|
|
repaint();
|
|
}
|
|
|
|
void CleanMesh()
|
|
{
|
|
MarchingCube();
|
|
#ifndef _TORUS
|
|
UpdateBBMesh();
|
|
#endif
|
|
repaint();
|
|
}
|
|
/*
|
|
void MCExtraction()
|
|
{
|
|
MarchingCubesExtraction();
|
|
}*/
|
|
|
|
void SetSegmentColor()
|
|
{
|
|
setColor();
|
|
}
|
|
}; |