KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
sparsepat.h
Go to the documentation of this file.
1 // sparsepat.h - CImg derived class to generate sparse sampling patterns
3 // Author: Doron Tal
4 // Date Created: April, 2000
5 
6 #ifndef _SPARSEPAT_H
7 #define _SPARSEPAT_H
8 
9 #include "wrap_dtlib_cpp/img.h"
10 
11 namespace DTLib {
12 
13  class CSparsePatImg : public CImg<BYTE>
14  {
15  public:
16  CSparsePatImg(const int& DenseRad, const int& MaxRad,
17  const int& nTotalSamples, const bool& bHalf = true,
18  const bool& bCenterPixOn = true);
19  };
20 
21 } // namespace DTLib {
22 
23 #endif /* #ifndef _SPARSEPATTERN_H */
CSparsePatImg(const int &DenseRad, const int &MaxRad, const int &nTotalSamples, const bool &bHalf=true, const bool &bCenterPixOn=true)
Definition: sparsepat.cpp:36
Definition: img.h:51
Definition: sparsepat.h:13