diff --git a/modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp b/modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp index 80b1666e156..840780a2709 100644 --- a/modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp +++ b/modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp @@ -474,6 +474,9 @@ class CV_EXPORTS_W ORB : public Feature2DAsync //! if true, image will be blurred before descriptors calculation CV_WRAP virtual void setBlurForDescriptor(bool blurForDescriptor) = 0; CV_WRAP virtual bool getBlurForDescriptor() const = 0; + + CV_WRAP virtual void setFastThreshold(int fastThreshold) = 0; + CV_WRAP virtual int getFastThreshold() const = 0; }; //! @}