HomeSort by relevance Sort by last modified time
    Searched defs:PgmImage (Results 1 - 2 of 2) sorted by null

  /development/perftests/panorama/feature_stab/src/dbregtest/
PgmImage.cpp 17 #include "PgmImage.h"
22 PgmImage::PgmImage(std::string filename) :
29 PgmImage::PgmImage(int w, int h, int format) :
35 PgmImage::PgmImage(unsigned char *data, int w, int h) :
41 PgmImage::PgmImage(std::vector<unsigned char> &data, int w, int h) :
51 PgmImage::PgmImage(const PgmImage &im)
    [all...]
PgmImage.h 28 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)
    [all...]

Completed in 27 milliseconds