mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 07:13:02 +04:00
Extended set of OpenVX HAL calls disabled for small images
This commit is contained in:
@@ -377,7 +377,8 @@ void cv::goodFeaturesToTrack( InputArray _image, OutputArray _corners,
|
||||
}
|
||||
|
||||
// Disabled due to bad accuracy
|
||||
CV_OVX_RUN(false && useHarrisDetector && _mask.empty(),
|
||||
CV_OVX_RUN(false && useHarrisDetector && _mask.empty() &&
|
||||
!ovx::skipSmallImages<VX_KERNEL_HARRIS_CORNERS>(image.cols, image.rows),
|
||||
openvx_harris(image, _corners, maxCorners, qualityLevel, minDistance, blockSize, harrisK))
|
||||
|
||||
if( useHarrisDetector )
|
||||
|
||||
Reference in New Issue
Block a user