HomeSort by relevance Sort by last modified time
    Searched full:histsize (Results 1 - 25 of 35) sorted by null

1 2

  /external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
calcHist_Demo.cpp 34 int histSize = 256;
45 calcHist( &bgr_planes[0], 1, 0, Mat(), b_hist, 1, &histSize, &histRange, uniform, accumulate );
46 calcHist( &bgr_planes[1], 1, 0, Mat(), g_hist, 1, &histSize, &histRange, uniform, accumulate );
47 calcHist( &bgr_planes[2], 1, 0, Mat(), r_hist, 1, &histSize, &histRange, uniform, accumulate );
51 int bin_w = cvRound( (double) hist_w/histSize );
61 for( int i = 1; i < histSize; i++ )
compareHist_Demo.cpp 46 int histSize[] = { h_bins, s_bins };
65 calcHist( &hsv_base, 1, channels, Mat(), hist_base, 2, histSize, ranges, true, false );
68 calcHist( &hsv_half_down, 1, channels, Mat(), hist_half_down, 2, histSize, ranges, true, false );
71 calcHist( &hsv_test1, 1, channels, Mat(), hist_test1, 2, histSize, ranges, true, false );
74 calcHist( &hsv_test2, 1, channels, Mat(), hist_test2, 2, histSize, ranges, true, false );
calcBackProject_Demo1.cpp 61 int histSize = MAX( bins, 2 );
66 calcHist( &hue, 1, 0, Mat(), hist, 1, &histSize, &ranges, true, false );
78 int bin_w = cvRound( (double) w / histSize );
calcBackProject_Demo2.cpp 84 int histSize[] = { h_bins, s_bins };
93 calcHist( &hsv, 1, channels, mask, hist, 2, histSize, ranges, true, false );
  /external/opencv3/modules/imgproc/perf/
perf_histogram.cpp 27 int histSize [] = {256};
40 calcHist(&source, numberOfImages, channels, Mat(), hist, dims, histSize, ranges);
56 int histSize [] = {256, 256};
68 calcHist(&source, numberOfImages, channels, Mat(), hist, dims, histSize, ranges);
83 int histSize [] = {32, 32, 32};
96 calcHist(&source, numberOfImages, channels, Mat(), hist, dims, histSize, ranges);
  /external/opencv3/samples/cpp/
demhist.cpp 19 int histSize = 64;
45 calcHist(&dst, 1, 0, Mat(), hist, 1, &histSize, 0);
51 int binW = cvRound((double)histImage.cols/histSize);
53 for( int i = 0; i < histSize; i++ )
detect_mser.cpp 382 int histSize = 256;
387 calcHist(&img, 1, 0, Mat(), hist, 1, &histSize, histRange, true, false);
  /external/opencv3/modules/cudaimgproc/src/
histogram.cpp 182 const int histSize = 256;
184 ensureSizeIsEnough(tilesX_ * tilesY_, histSize, CV_8UC1, lut_);
209 const float lutScale = static_cast<float>(histSize - 1) / tileSizeTotal;
214 clipLimit = static_cast<int>(clipLimit_ * tileSizeTotal / histSize);
284 static void hist(const GpuMat& src, OutputArray _hist, int histSize, int lowerLevel, int upperLevel, Stream& stream)
286 const int levels = histSize + 1;
288 _hist.create(1, histSize, CV_32S);
315 static void hist(const GpuMat& src, GpuMat hist[4], int histSize[4], int lowerLevel[4], int upperLevel[4], Stream& stream)
317 int levels[] = {histSize[0] + 1, histSize[1] + 1, histSize[2] + 1, histSize[3] + 1}
    [all...]
  /external/opencv3/modules/imgproc/src/
clahe.cpp 130 template <class T, int histSize, int shift>
151 template <class T, int histSize, int shift>
152 void CLAHE_CalcLut_Body<T,histSize,shift>::operator ()(const cv::Range& range) const
174 int tileHist[histSize] = {0, };
199 for (int i = 0; i < histSize; ++i)
209 int redistBatch = clipped / histSize;
210 int residual = clipped - redistBatch * histSize;
212 for (int i = 0; i < histSize; ++i)
222 for (int i = 0; i < histSize; ++i)
360 int histSize = _src.type() == CV_8UC1 ? 256 : 4096
    [all...]
histogram.cpp 116 const Mat& mask, int dims, const int* histSize,
181 uniranges[i*2] = histSize[i]/256.;
192 double t = histSize[i]/(high - low);
201 size_t n = histSize[i];
    [all...]
  /external/opencv3/modules/cudaimgproc/src/cuda/
hough_circles.cu 182 const int minRadius, const int maxRadius, const int histSize, const int threshold)
186 for (int i = threadIdx.x; i < histSize + 2; i += blockDim.x)
216 for (int i = threadIdx.x; i < histSize; i += blockDim.x)
240 const int histSize = maxRadius - minRadius + 1;
241 size_t smemSize = (histSize + 2) * sizeof(int);
243 circlesAccumRadius<<<grid, block, smemSize>>>(centers, list, count, circles, maxCircles, dp, minRadius, maxRadius, histSize, threshold);
  /external/opencv3/modules/cudaimgproc/perf/
perf_histogram.cpp 75 const int histSize[] = {hbins};
81 TEST_CYCLE() cv::calcHist(&src, 1, channels, cv::Mat(), dst, 1, histSize, ranges);
100 int histSize[] = {30, 30, 30, 30};
109 TEST_CYCLE() cv::cuda::histEven(d_src, d_hist, histSize, lowerLevel, upperLevel);
  /external/opencv3/modules/cudaimgproc/test/
test_histogram.cpp 78 int histSize[] = {hbins};
81 cv::calcHist(&src, 1, channels, cv::Mat(), hist_gold, 1, histSize, ranges);
122 const int histSize[] = {hbins};
126 cv::calcHist(&src, 1, channels, cv::Mat(), hist_gold, 1, histSize, ranges);
  /external/opencv3/doc/tutorials/imgproc/histograms/histogram_calculation/
histogram_calculation.markdown 100 int histSize = 256; //from 0 to 255
120 calcHist( &bgr_planes[0], 1, 0, Mat(), b_hist, 1, &histSize, &histRange, uniform, accumulate );
121 calcHist( &bgr_planes[1], 1, 0, Mat(), g_hist, 1, &histSize, &histRange, uniform, accumulate );
122 calcHist( &bgr_planes[2], 1, 0, Mat(), r_hist, 1, &histSize, &histRange, uniform, accumulate );
135 - **histSize:** The number of bins per each used dimension
144 int bin_w = cvRound( (double) hist_w/histSize );
170 for( int i = 1; i < histSize; i++ )
  /external/opencv3/doc/tutorials/imgproc/histograms/histogram_comparison/
histogram_comparison.markdown 87 int histSize[] = { h_bins, s_bins };
105 calcHist( &hsv_base, 1, channels, Mat(), hist_base, 2, histSize, ranges, true, false );
108 calcHist( &hsv_half_down, 1, channels, Mat(), hist_half_down, 2, histSize, ranges, true, false );
111 calcHist( &hsv_test1, 1, channels, Mat(), hist_test1, 2, histSize, ranges, true, false );
114 calcHist( &hsv_test2, 1, channels, Mat(), hist_test2, 2, histSize, ranges, true, false );
  /external/opencv3/modules/imgproc/test/ocl/
test_histogram.cpp 159 int histSize = randomInt(3, 29);
165 calcHist(&frame1, 1, 0, Mat(), hist1, 1, &histSize, &ranges1, true, false);
255 std::vector<int> histSize(1, 256);
263 OCL_OFF(cv::calcHist(std::vector<Mat>(1, src_roi), channels, noArray(), hist_roi, histSize, ranges, false));
264 OCL_ON(cv::calcHist(std::vector<UMat>(1, usrc_roi), channels, noArray(), uhist_roi, histSize, ranges, false));
  /external/mksh/src/
var_spec.h 48 FN(HISTSIZE)
histrap.c 78 /* HISTSIZE default: size of saved history, persistent or standard */
530 if (n > 0 && n != histsize) {
541 histsize = n;
590 histsize = MKSH_DEFHISTSIZE;
591 history = alloc2(histsize, sizeof(char *), APERM);
699 if (++hp >= history + histsize) {
702 for (hp = history; hp < history + histsize - 1; hp++)
795 if (lines > histsize && histptr >= history) {
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 876 int dims, histsize[CV_MAX_DIM]; local
880 dims = cvGetDims( hist->bins, histsize );
883 status = icvCalcHistLookupTables8u( hist, dims, histsize, tab );
894 total *= histsize[i];
1129 int dims, histsize[CV_MAX_DIM]; local
1559 int dims, histsize[CV_MAX_DIM]; local
1820 int dims, histsize[CV_MAX_DIM]; local
    [all...]
  /external/opencv3/modules/imgproc/perf/opencl/
perf_imgproc.cpp 84 std::vector<int> histSize(1, 256);
93 OCL_TEST_CYCLE() cv::calcHist(std::vector<UMat>(1, src), channels, noArray(), hist, histSize, ranges, false);
108 std::vector<int> histSize(1, 256);
117 cv::calcHist(std::vector<UMat>(1, src), channels, noArray(), hist, histSize, ranges, false);
  /external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_begins/
py_histogram_begins.markdown 50 **histSize** in OpenCV docs.
63 <center><em>cv2.calcHist(images, channels, mask, histSize, ranges[, hist[, accumulate]])</em></center>
74 -# histSize : this represents our BIN count. Need to be given in square brackets. For full scale,
  /external/opencv3/doc/tutorials/imgproc/histograms/back_projection/
back_projection.markdown 139 int histSize = MAX( bins, 2 );
145 calcHist( &hue, 1, 0, Mat(), hist, 1, &histSize, &ranges, true, false );
163 int bin_w = cvRound( (double) w / histSize );
  /external/opencv3/apps/traincascade/
HOGfeatures.cpp 163 Size histSize(histogram[0].size());
233 memset( histBuf, 0, histSize.width * sizeof(histBuf[0]) );
  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java 239 MatOfInt histSize = new MatOfInt(10);
243 Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges);
256 MatOfInt histSize = new MatOfInt(10);
260 Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges);
273 MatOfInt histSize = new MatOfInt(10, 10);
277 Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges);
293 MatOfInt histSize = new MatOfInt(10);
298 Imgproc.calcHist(images, new MatOfInt(i), new Mat(), histList.get(i), histSize, ranges);
328 MatOfInt histSize = new MatOfInt(10, 10);
332 Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges, true)
    [all...]
  /external/opencv3/modules/cudaimgproc/include/opencv2/
cudaimgproc.hpp 251 @param hist Destination histogram with one row, histSize columns, and the CV_32S type.
252 @param histSize Size of the histogram.
257 CV_EXPORTS void histEven(InputArray src, OutputArray hist, int histSize, int lowerLevel, int upperLevel, Stream& stream = Stream::Null());
259 CV_EXPORTS void histEven(InputArray src, GpuMat hist[4], int histSize[4], int lowerLevel[4], int upperLevel[4], Stream& stream = Stream::Null());

Completed in 2139 milliseconds

1 2