Commit a197133d authored by Geert Willems's avatar Geert Willems

add get/set for FastThreshold

parent 0915b7ea
...@@ -474,6 +474,9 @@ public: ...@@ -474,6 +474,9 @@ public:
//! if true, image will be blurred before descriptors calculation //! if true, image will be blurred before descriptors calculation
CV_WRAP virtual void setBlurForDescriptor(bool blurForDescriptor) = 0; CV_WRAP virtual void setBlurForDescriptor(bool blurForDescriptor) = 0;
CV_WRAP virtual bool getBlurForDescriptor() const = 0; CV_WRAP virtual bool getBlurForDescriptor() const = 0;
CV_WRAP virtual void setFastThreshold(int fastThreshold) = 0;
CV_WRAP virtual int getFastThreshold() const = 0;
}; };
//! @} //! @}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment