- Timestamp:
- 09/02/10 04:26:09 (3 years ago)
- File:
-
- 1 edited
-
trunk/core/histogram.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/histogram.c
r740 r929 14 14 15 15 static float identity(float x); 16 static float lo carithmic(float x);16 static float logarithmic(float x); 17 17 18 18 … … 36 36 } 37 37 38 float lo carithmic(float x) {38 float logarithmic(float x) { 39 39 return log(x); 40 40 } … … 43 43 switch (mode) { 44 44 case HISTO_MODE_LOG: 45 histogram_transform = lo carithmic;45 histogram_transform = logarithmic; 46 46 break; 47 47 case HISTO_MODE_LINEAR:
Note: See TracChangeset
for help on using the changeset viewer.