Home
last modified time | relevance | path

Searched refs:PgmImage (Results 1 – 3 of 3) sorted by relevance

/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
DPgmImage.cpp22 PgmImage::PgmImage(std::string filename) : in PgmImage() function in PgmImage
29 PgmImage::PgmImage(int w, int h, int format) : in PgmImage() function in PgmImage
35 PgmImage::PgmImage(unsigned char *data, int w, int h) : in PgmImage() function in PgmImage
41 PgmImage::PgmImage(std::vector<unsigned char> &data, int w, int h) : in PgmImage() function in PgmImage
51 PgmImage::PgmImage(const PgmImage &im) : in PgmImage() function in PgmImage
57 PgmImage& PgmImage::operator= (const PgmImage &im) in operator =()
64 void PgmImage::DeepCopy(const PgmImage& src, PgmImage& dst) in DeepCopy()
78 PgmImage::~PgmImage() in ~PgmImage()
83 void PgmImage::SetFormat(int format) in SetFormat()
102 void PgmImage::SetData(const unsigned char * data) in SetData()
[all …]
DPgmImage.h28 class PgmImage
30 friend std::ostream& operator<< (std::ostream& o, const PgmImage& im);
36 PgmImage(std::string filename);
40 PgmImage(int w, int h, int format = PGM_BINARY_GRAYMAP);
44 PgmImage(unsigned char *data, int w, int h);
48 PgmImage(std::vector<unsigned char> &data, int w, int h);
50 PgmImage(const PgmImage &im);
52 PgmImage& operator= (const PgmImage &im);
53 ~PgmImage();
80 void DeepCopy(const PgmImage& src, PgmImage& dst);
[all …]
Ddbregtest.cpp144 PgmImage color_ref(0,0); in main()
155 PgmImage ref(file_name); in main()
169 bool color = format == PgmImage::PGM_BINARY_PIXMAP; in main()
229 PgmImage warped(w,h,format); in main()