diff --git a/apps/sample/trimesh_isosurface/simple_volume.h b/apps/sample/trimesh_isosurface/simple_volume.h new file mode 100644 index 00000000..eaee41d8 --- /dev/null +++ b/apps/sample/trimesh_isosurface/simple_volume.h @@ -0,0 +1,99 @@ +#ifndef __VCG_SIMPLE_VOLUME +#define __VCG_SIMPLE_VOLUME +#include +namespace vcg +{ + +template +class SimpleVolume +{ +public: + typedef VOX_TYPE VoxelType; + std::vector Vol; + + Point3i sz; /// Dimensioni griglia come numero di celle per lato + + const Point3i &ISize() {return sz;}; /// Dimensioni griglia come numero di celle per lato + + void Init(Point3i _sz) + { + sz=_sz; + Vol.resize(sz[0]*sz[1]*sz[2]); + } + + float Val(const int &x,const int &y,const int &z) const { + return cV(x,y,z).V(); + //else return numeric_limits::quiet_NaN( ); + } + + float &Val(const int &x,const int &y,const int &z) { + return V(x,y,z).V(); + //else return numeric_limits::quiet_NaN( ); + } + + VOX_TYPE &V(const int &x,const int &y,const int &z) { + return Vol[x+y*sz[0]+z*sz[0]*sz[1]]; + } + + const VOX_TYPE &cV(const int &x,const int &y,const int &z) const { + return Vol[x+y*sz[0]+z*sz[0]*sz[1]]; + } + + +typedef enum { XAxis=0,YAxis=1,ZAxis=2} VolumeAxis; + +template < class VertexPointerType, VolumeAxis AxisVal > + void GetIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) +{ + float f1 = Val(p1.X(), p1.Y(), p1.Z())-thr; + float f2 = Val(p2.X(), p2.Y(), p2.Z())-thr; + float u = (float) f1/(f1-f2); + if(AxisVal==XAxis) v->P().X() = (float) p1.X()*(1-u) + u*p2.X(); + else v->P().X() = (float) p1.X(); + if(AxisVal==YAxis) v->P().Y() = (float) p1.Y()*(1-u) + u*p2.Y(); + else v->P().Y() = (float) p1.Y(); + if(AxisVal==ZAxis) v->P().Z() = (float) p1.Z()*(1-u) + u*p2.Z(); + else v->P().Z() = (float) p1.Z(); +} + +template < class VertexPointerType > + void GetXIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) +{ GetIntercept(p1,p2,v,thr); } + +template < class VertexPointerType > + void GetYIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) +{ GetIntercept(p1,p2,v,thr); } + +template < class VertexPointerType > + void GetZIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) +{ GetIntercept(p1,p2,v,thr); } +}; +template +class RawVolumeImporter +{ +public: + enum DataType +{ + // Funzioni superiori + UNDEF=0, + BYTE=1, + SHORT=2, + FLOAT=3 +}; + +static bool Open(const char *filename, VolumeType &V, Point3i sz, DataType d) +{ +return true; +} +}; + +class SimpleVoxel +{ +private: + float _v; +public: + float &V() {return _v;}; + float V() const {return _v;}; +}; +} // end namespace +#endif // __VCG_SIMPLE_VOLUME \ No newline at end of file diff --git a/apps/sample/trimesh_isosurface/trimesh_isosurface.cpp b/apps/sample/trimesh_isosurface/trimesh_isosurface.cpp index c05383aa..d95a442c 100644 --- a/apps/sample/trimesh_isosurface/trimesh_isosurface.cpp +++ b/apps/sample/trimesh_isosurface/trimesh_isosurface.cpp @@ -7,10 +7,13 @@ #include #include #include -#include "trivial_walker.h" #include #include + +#include "simple_volume.h" +#include "trivial_walker.h" + using namespace std; using namespace vcg; @@ -28,100 +31,9 @@ class MyFace : public FaceSimp2< MyVertex, MyEdge, MyFace, face::Vertex class MyMesh : public vcg::tri::TriMesh< std::vector< MyVertex>, std::vector< MyFace > > {}; -template -class Volume -{ -public: - typedef VOX_TYPE VoxelType; - vector Vol; - - Point3i sz; /// Dimensioni griglia come numero di celle per lato - - const Point3i &ISize() {return sz;}; /// Dimensioni griglia come numero di celle per lato - - void Init(Point3i _sz) - { - sz=_sz; - Vol.resize(sz[0]*sz[1]*sz[2]); - } - - float Val(const int &x,const int &y,const int &z) const { - return cV(x,y,z).V(); - //else return numeric_limits::quiet_NaN( ); - } - - float &Val(const int &x,const int &y,const int &z) { - return V(x,y,z).V(); - //else return numeric_limits::quiet_NaN( ); - } - - VOX_TYPE &V(const int &x,const int &y,const int &z) { - return Vol[x+y*sz[0]+z*sz[0]*sz[1]]; - } - - const VOX_TYPE &cV(const int &x,const int &y,const int &z) const { - return Vol[x+y*sz[0]+z*sz[0]*sz[1]]; - } -typedef enum { XAxis=0,YAxis=1,ZAxis=2} VolumeAxis; - -template < class VertexPointerType, VolumeAxis AxisVal > - void GetIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) -{ - float f1 = Val(p1.X(), p1.Y(), p1.Z())-thr; - float f2 = Val(p2.X(), p2.Y(), p2.Z())-thr; - float u = (float) f1/(f1-f2); - if(AxisVal==XAxis) v->P().X() = (float) p1.X()*(1-u) + u*p2.X(); - else v->P().X() = (float) p1.X(); - if(AxisVal==YAxis) v->P().Y() = (float) p1.Y()*(1-u) + u*p2.Y(); - else v->P().Y() = (float) p1.Y(); - if(AxisVal==ZAxis) v->P().Z() = (float) p1.Z()*(1-u) + u*p2.Z(); - else v->P().Z() = (float) p1.Z(); -} - -template < class VertexPointerType > - void GetXIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) -{ GetIntercept(p1,p2,v,thr); } - -template < class VertexPointerType > - void GetYIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) -{ GetIntercept(p1,p2,v,thr); } - -template < class VertexPointerType > - void GetZIntercept(const vcg::Point3i &p1, const vcg::Point3i &p2, VertexPointerType &v, const float thr) -{ GetIntercept(p1,p2,v,thr); } -}; -template -class RawVolumeImporter -{ -public: - enum DataType -{ - // Funzioni superiori - UNDEF=0, - BYTE=1, - SHORT=2, - FLOAT=3 -}; - -static bool Open(const char *filename, VolumeType &V, Point3i sz, DataType d) -{ -return true; -} -}; - -class SimpleVoxel -{ -private: - float _v; -public: - float &V() {return _v;}; - float V() const {return _v;}; -}; - - -typedef Volume MyVolume; +typedef SimpleVolume MyVolume; int main(int /*argc*/ , char /**argv[]*/) { diff --git a/apps/sample/trimesh_isosurface/trimesh_isosurface.pro b/apps/sample/trimesh_isosurface/trimesh_isosurface.pro index 94d5d3e0..3b0bbe68 100644 --- a/apps/sample/trimesh_isosurface/trimesh_isosurface.pro +++ b/apps/sample/trimesh_isosurface/trimesh_isosurface.pro @@ -1,18 +1,6 @@ -###################################################################### -# Automatically generated by qmake (2.00a) mer 6. lug 08:37:03 2005 -###################################################################### - -LIBPATH += -DEPENDPATH += . INCLUDEPATH += . ../../.. CONFIG += console stl TEMPLATE = app # Input -HEADERS += Definitions.h \ - Implicit.h \ - ImplicitSphere.h \ - SphereDifference.h \ - SphereUnion.h \ - Volume.h \ - Walker.h +HEADERS += trivial_walker.h simple_volume.h SOURCES += trimesh_isosurface.cpp ../../../wrap/ply/plylib.cpp