Commit 55bf7725c36c73e745dc812d068912a9d699d609

Authored by Scott Klum
1 parent 86189b5f

Better names

openbr/plugins/imgproc/adaptivethreshold.cpp
... ... @@ -29,8 +29,9 @@ class AdaptiveThresholdTransform : public UntrainableTransform
29 29 Gaussian = ADAPTIVE_THRESH_GAUSSIAN_C };
30 30  
31 31 enum Type { Binary = THRESH_BINARY,
32   - Binary_Inv = THRESH_BINARY_INV };
  32 + BinaryInv = THRESH_BINARY_INV };
33 33  
  34 +private:
34 35 BR_PROPERTY(int, maxValue, 255)
35 36 BR_PROPERTY(Method, method, Mean)
36 37 BR_PROPERTY(Type, type, Binary)
... ...