You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just now I can't set some parameters for cv::videostab::KeypointBasedMotionEstimatorGpu class.
For example I want to set non default parameters for features detector. On Nvidia Jetson Nano it works very slow.
Whats about a more flexible interface? For example a second constructor with parameters from cuda::createGoodFeaturesToTrackDetector:
class CV_EXPORTS KeypointBasedMotionEstimatorGpu : public ImageMotionEstimatorBase
{
public:
KeypointBasedMotionEstimatorGpu(Ptr<MotionEstimatorBase> estimator);
KeypointBasedMotionEstimatorGpu(Ptr<MotionEstimatorBase> estimator,
int maxCorners, double qualityLevel, double minDistance,
int blockSize, bool useHarrisDetector, double harrisK);
...
The text was updated successfully, but these errors were encountered:
Just now I can't set some parameters for cv::videostab::KeypointBasedMotionEstimatorGpu class.
For example I want to set non default parameters for features detector. On Nvidia Jetson Nano it works very slow.
Whats about a more flexible interface? For example a second constructor with parameters from cuda::createGoodFeaturesToTrackDetector:
The text was updated successfully, but these errors were encountered: