12 lines
624 B
C++
12 lines
624 B
C++
#ifndef POLYTOQIMAGE_H
|
|
#define POLYTOQIMAGE_H
|
|
#include <vcg/space/point2.h>
|
|
#include <vcg/space/box2.h>
|
|
#include <vcg/math/similarity2.h>
|
|
|
|
int dumpPolySet(const char * imageName, std::vector< std::vector< std::vector<vcg::Point2f> > > &polyVecVec, std::vector<vcg::Similarity2f> &trVec, int width, int height);
|
|
int dumpPolySet(const char * imageName, std::vector< std::vector<vcg::Point2f> > &polyVec, std::vector<vcg::Similarity2f> &trVec, int width=1024,int height=1024);
|
|
int dumpPolySet(const char * imageName, std::vector< std::vector<vcg::Point2f> > &polyVec, int width=1024,int height=1024);
|
|
|
|
#endif // POLYTOQIMAGE_H
|