Commit 6d1a99a0c936fc2e3234f2a346950a66996e108f
1 parent
ee35e812
made note of #234
Showing
1 changed file
with
1 additions
and
0 deletions
openbr/plugins/filter.cpp
| ... | ... | @@ -210,6 +210,7 @@ class ContrastEqTransform : public UntrainableTransform |
| 210 | 210 | for (int i=0; i<nRows; i++) |
| 211 | 211 | for (int j=0; j<nCols; j++) |
| 212 | 212 | m.at<float>(i, j) = fast_tanh(p[i*nCols+j]); |
| 213 | + // TODO: m.at<float>(i, j) = t * fast_tanh(p[i*nCols+j] / t); | |
| 213 | 214 | |
| 214 | 215 | dst = m; |
| 215 | 216 | } | ... | ... |