Searched defs:nstripes (Results 1 - 3 of 3) sorted by relevance

/external/opencv3/modules/core/src/
H A Dparallel.cpp148 nstripes = cvRound(_nstripes <= 0 ? len : MIN(MAX(_nstripes, 1.), len));
154 ((uint64)sr.start*(wholeRange.end - wholeRange.start) + nstripes/2)/nstripes);
155 r.end = sr.end >= nstripes ? wholeRange.end : (int)(wholeRange.start +
156 ((uint64)sr.end*(wholeRange.end - wholeRange.start) + nstripes/2)/nstripes);
159 cv::Range stripeRange() const { return cv::Range(0, nstripes); }
164 int nstripes; member in class:__anon15755::ParallelLoopBodyWrapper
246 void cv::parallel_for_(const cv::Range& range, const cv::ParallelLoopBody& body, double nstripes) argument
252 ProxyLoopBody pbody(body, range, nstripes);
[all...]
H A Dparallel_pthreads.cpp78 work_load(const cv::Range& range, const cv::ParallelLoopBody& body, int nstripes) argument
80 set(range, body, nstripes);
83 void set(const cv::Range& range, const cv::ParallelLoopBody& body, int nstripes) argument
87 m_nstripes = nstripes;
183 void run(const cv::Range& range, const cv::ParallelLoopBody& body, double nstripes);
407 void ThreadManager::run(const cv::Range& range, const cv::ParallelLoopBody& body, double nstripes) argument
412 (range.end - range.start > 1) && (nstripes <= 0 || nstripes >= 1.5) )
422 nstripes = std::max(nstripes, min_stripe
591 parallel_for_pthreads(const cv::Range& range, const cv::ParallelLoopBody& body, double nstripes) argument
[all...]
/external/opencv3/modules/objdetect/src/
H A Dcascadedetect.cpp1013 nstripes = _nstripes;
1078 int nscales, nstripes; member in class:cv::CascadeClassifierInvoker
1346 int nstripes = cvCeil(szw.width/32.); local
1350 stripeSizes[i] = std::max((szw.height/s[i].ystep + nstripes-1)/nstripes, 1)*s[i].ystep;
1355 CascadeClassifierInvoker invoker(*this, (int)nscales, nstripes, s, stripeSizes,
1358 parallel_for_(Range(0, nstripes), invoker);

Completed in 209 milliseconds