Home
last modified time | relevance | path

Searched refs:ncvMinSize (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/cudaobjdetect/src/
Dcascadeclassifier.cpp130 …NCVStatus process(const GpuMat& src, GpuMat& objects, cv::Size ncvMinSize, /*out*/ unsigned int& n…
181 Size ncvMinSize = getClassifierSize(); in detectMultiScale() local
182 if (ncvMinSize.width < minObjectSize_.width && ncvMinSize.height < minObjectSize_.height) in detectMultiScale()
184 ncvMinSize.width = minObjectSize_.width; in detectMultiScale()
185 ncvMinSize.height = minObjectSize_.height; in detectMultiScale()
192 ncvSafeCall( process(image, objectsBuf, ncvMinSize, numDetections) ); in detectMultiScale()
317 …NCVStatus HaarCascade_Impl::process(const GpuMat& src, GpuMat& objects, cv::Size ncvMinSize, /*out… in process() argument
348 NcvSize32u winMinSize(ncvMinSize.width, ncvMinSize.height); in process()