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

  /external/opencv/cxcore/src/
cxarray.cpp 44 // CvMat, CvMatND, CvSparceMat and IplImage support functions
273 * CvMatND creation and basic operations *
276 CV_IMPL CvMatND*
277 cvInitMatNDHeader( CvMatND* mat, int dims, const int* sizes,
280 CvMatND* result = 0;
333 // Creates CvMatND and underlying data
334 CV_IMPL CvMatND*
337 CvMatND* arr = 0;
355 // Creates CvMatND header only
356 CV_IMPL CvMatND*
    [all...]
cxlogic.cpp 222 CvMatND stubs[2];
388 CvMatND stubs[3];
650 CvMatND stubs[2];
cxcopy.cpp 339 CvMatND stubs[3];
510 CvMatND nstub;
686 CvMatND nstub;
    [all...]
cxarithm.cpp 304 CvMatND stubs[3];
580 CvMatND stubs[2];
776 CvMatND stubs[3];
    [all...]
cxrand.cpp 461 CvMatND stub_nd;
cxsumpixels.cpp 416 CvMatND nstub;
607 CvMatND nstub;
    [all...]
cxconvert.cpp     [all...]
cxnorm.cpp     [all...]
cxpersistence.cpp     [all...]
  /external/opencv/cxcore/include/
cxcore.h 163 CvMatND* mat = (CvMatND*)arr;
183 CvMatND* mat = (CvMatND*)arr;
235 /* Allocates and initializes CvMatND header */
236 CVAPI(CvMatND*) cvCreateMatNDHeader( int dims, const int* sizes, int type );
238 /* Allocates and initializes CvMatND header and allocates data */
239 CVAPI(CvMatND*) cvCreateMatND( int dims, const int* sizes, int type );
241 /* Initializes preallocated CvMatND header */
242 CVAPI(CvMatND*) cvInitMatNDHeader( CvMatND* mat, int dims, const int* sizes
    [all...]
cxtypes.h 695 * Multi-dimensional dense array (CvMatND) *
704 typedef struct CvMatND
728 CvMatND;
731 ((mat) != NULL && (((const CvMatND*)(mat))->type & CV_MAGIC_MASK) == CV_MATND_MAGIC_VAL)
734 (CV_IS_MATND_HDR(mat) && ((const CvMatND*)(mat))->data.ptr != NULL)
815 CvMatND mat; /* Embedded matrix header for array histograms. */
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 812 step = ((CvMatND*)(hist->bins))->dim[i].step/sizeof(float);
835 step = ((CvMatND*)(hist->bins))->dim[i].step/sizeof(float);
891 int* bins = ((CvMatND*)(hist->bins))->data.i;
    [all...]
cvpgh.cpp 357 IPPI_CALL( icvCalcPGH( contour, ((CvMatND*)(hist->bins))->data.fl, size[0], size[1] ));

Completed in 190 milliseconds