KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
texturescale.h
Go to the documentation of this file.
1 // texturescale.h - compute texture scale
3 // Author: Doron Tal
4 // Date created: April, 2000
5 
6 #ifndef _TEXTURESCALE_H
7 #define _TEXTURESCALE_H
8 
9 #define REAL float /* required, for triangle.h */
10 
11 #include "wrap_dtlib_cpp/img.h"
13 
14 namespace DTLib {
15 
16  // *** TODO: *** need comments
17 
19  {
20  public:
21 
22  CTextureScale(const int maxPoints);
24 
25  void ComputeScaleImg(CImg<BYTE> &Img, CImg<float> &ScaleImg,
26  const float& minDist, const float& maxDist,
27  const float& MedianMultiplier);
28 
29  private:
30  REAL* m_pInputPts;
31  int* m_pEdges;
32  };
33 
34 } // namespace DTLib {
35 
36 #endif /* #ifndef _TEXTURESCALE_H */
CTextureScale(const int maxPoints)
Definition: texturescale.cpp:19
Definition: texturescale.h:18
#define REAL
Definition: texturescale.h:9
void ComputeScaleImg(CImg< BYTE > &Img, CImg< float > &ScaleImg, const float &minDist, const float &maxDist, const float &MedianMultiplier)
Definition: texturescale.cpp:37
~CTextureScale()
Definition: texturescale.cpp:27