KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
weberlaw.h
Go to the documentation of this file.
1 // weberlaw.h - weber law on filterbank convolutions (for textons)
3 // Author: Doron Tal
4 // Date Created: April, 2000
5 
6 #ifndef _WEBERLAW_H
7 #define _WEBERLAW_H
8 
9 #include "wrap_dtlib_cpp/img.h"
10 
11 namespace DTLib {
12 
13  // perform Weber's Law, or contrast normalization, on the result
14  // of filterbank convolutions 'InOutSeq'. IN PLACE PROCESSING: the
15  // input sequence is permanently modified.
16  void WeberLaw(CImgVec<float> &InOutSeq, const float& WeberConst);
17 
18 } // namespace DTLib {
19 
20 #endif /* #ifndef _WEBERLAW_H */
void WeberLaw(CImgVec< float > &InOutSeq, const float &WeberConst)
Definition: weberlaw.cpp:12