HomeSort by relevance Sort by last modified time
    Searched full:matnd (Results 1 - 13 of 13) sorted by null

  /external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
compareHist_Demo.cpp 59 MatND hist_base;
60 MatND hist_half_down;
61 MatND hist_test1;
62 MatND hist_test2;
calcBackProject_Demo1.cpp 60 MatND hist;
70 MatND backproj;
calcBackProject_Demo2.cpp 82 MatND hist;
98 MatND backproj;
  /external/opencv3/doc/tutorials/imgproc/histograms/histogram_comparison/
histogram_comparison.markdown 96 -# Create the MatND objects to store the histograms:
98 MatND hist_base;
99 MatND hist_half_down;
100 MatND hist_test1;
101 MatND hist_test2;
  /external/opencv/cxcore/src/
cxarray.cpp 417 cvGetMatND( const CvArr* arr, CvMatND* matnd, int* coi )
428 if( !matnd || !arr )
451 matnd->data.ptr = mat->data.ptr;
452 matnd->refcount = 0;
453 matnd->hdr_refcount = 0;
454 matnd->type = mat->type;
455 matnd->dims = 2;
456 matnd->dim[0].size = mat->rows;
457 matnd->dim[0].step = mat->step;
458 matnd->dim[1].size = mat->cols
2852 CvMatND* matnd = (CvMatND*)src; local
    [all...]
cxsumpixels.cpp 415 void* matnd = (void*)mat; local
420 CV_CALL( cvInitNArrayIterator( 1, &matnd, 0, &nstub, &iterator ));
606 void* matnd = (void*)arr; local
611 CV_CALL( cvInitNArrayIterator( 1, &matnd, 0, &nstub, &iterator ));
    [all...]
  /external/opencv3/modules/core/src/
array.cpp 327 cvGetMatND( const CvArr* arr, CvMatND* matnd, int* coi )
334 if( !matnd || !arr )
357 matnd->data.ptr = mat->data.ptr;
358 matnd->refcount = 0;
359 matnd->hdr_refcount = 0;
360 matnd->type = mat->type;
361 matnd->dims = 2;
362 matnd->dim[0].size = mat->rows;
363 matnd->dim[0].step = mat->step;
364 matnd->dim[1].size = mat->cols
2463 CvMatND* matnd = (CvMatND*)src; local
    [all...]
  /external/opencv3/doc/tutorials/imgproc/histograms/back_projection/
back_projection.markdown 138 MatND hist;
150 MatND backproj;
  /external/opencv3/modules/core/test/
test_io.cpp 152 MatND test_mat_nd(3, sz, CV_MAKETYPE(depth, cn));
158 MatND test_mat_scale(test_mat_nd.dims, test_mat_nd.size, test_mat_nd.type());
261 MatND mat_nd2;
test_mat.cpp 669 MatND A(3, sz3, CV_32F), B(3, sz3, CV_16SC4);
815 MatND Md;
    [all...]
test_operations.cpp     [all...]
  /external/opencv3/modules/core/include/opencv2/core/
base.hpp 612 typedef Mat MatND;
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]

Completed in 332 milliseconds