Home
last modified time | relevance | path

Searched refs:PGMImage (Results 1 – 2 of 2) sorted by relevance

/external/ceres-solver/examples/
Dpgm_image.h50 class PGMImage {
53 PGMImage(int width, int height);
55 explicit PGMImage(std::string filename);
72 void operator+=(const PGMImage& image);
94 PGMImage<Real>::PGMImage(int width, int height) in PGMImage() function
99 PGMImage<Real>::PGMImage(std::string filename) { in PGMImage() function
107 void PGMImage<Real>::Set(double constant) { in Set()
114 int PGMImage<Real>::width() const { in width()
119 int PGMImage<Real>::height() const { in height()
124 int PGMImage<Real>::NumPixels() const { in NumPixels()
[all …]
Ddenoising.cc90 const PGMImage<double>& image, in CreateProblem()
92 PGMImage<double>* solution) { in CreateProblem()
139 void SolveProblem(Problem* problem, PGMImage<double>* solution) { in SolveProblem()
201 PGMImage<double> image(FLAGS_input); in main()
206 PGMImage<double> solution(image.width(), image.height()); in main()