OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_hist
(Results
1 - 6
of
6
) sorted by null
/external/opencv3/modules/cudaimgproc/src/
histogram.cpp
74
void cv::cuda::calcHist(InputArray _src, OutputArray
_hist
, Stream& stream)
80
_hist
.create(1, 256, CV_32SC1);
81
GpuMat hist =
_hist
.getGpuMat();
284
static void hist(const GpuMat& src, OutputArray
_hist
, int histSize, int lowerLevel, int upperLevel, Stream& stream)
288
_hist
.create(1, histSize, CV_32S);
289
GpuMat hist =
_hist
.getGpuMat();
388
static void hist(const GpuMat& src, OutputArray
_hist
, const GpuMat& levels, Stream& stream)
392
_hist
.create(1, levels.cols - 1, CV_32S);
393
GpuMat hist =
_hist
.getGpuMat();
/external/opencv3/samples/tapi/
camshift.cpp
149
cv::Mat
_hist
= hist.getMat(cv::ACCESS_READ);
local
152
int val = cv::saturate_cast<int>(
_hist
.at<float>(i)*histimg.rows/255);
/external/opencv3/modules/imgproc/src/
histogram.cpp
[
all
...]
/external/blktrace/btt/doc/
btt.tex
[
all
...]
/external/opencv3/modules/objdetect/test/
test_cascadeandhog.cpp
936
void HOGCacheTester::normalizeBlockHistogram(float*
_hist
) const
938
float* hist = &
_hist
[0], partSum[4] = { 0.0f, 0.0f, 0.0f, 0.0f };
[
all
...]
/external/opencv3/modules/objdetect/src/
hog.cpp
[
all
...]
Completed in 1310 milliseconds