Searched refs:CvSparseMat (Results 1 - 7 of 7) sorted by relevance

/external/opencv/cxcore/src/
H A Dcxarray.cpp633 * CvSparseMat creation and basic operations *
638 CV_IMPL CvSparseMat*
641 CvSparseMat* arr = 0;
668 CV_CALL( arr = (CvSparseMat*)cvAlloc(sizeof(*arr)+MAX(0,dims-CV_MAX_DIM)*sizeof(arr->size[0])));
700 cvReleaseSparseMat( CvSparseMat** array )
711 CvSparseMat* arr = *array;
728 CV_IMPL CvSparseMat*
729 cvCloneSparseMat( const CvSparseMat* src )
731 CvSparseMat* dst = 0;
753 cvInitSparseMatIterator( const CvSparseMat* ma
[all...]
H A Dcxcopy.cpp304 CvSparseMat* src1 = (CvSparseMat*)src;
305 CvSparseMat* dst1 = (CvSparseMat*)dst;
712 CvSparseMat* mat1 = (CvSparseMat*)mat;
H A Dcxpersistence.cpp3708 /******************************* CvSparseMat ******************************/
3745 const CvSparseMat* mat = (const CvSparseMat*)struct_ptr;
3821 CvSparseMat* mat;
/external/opencv/cv/src/
H A Dcvhistogram.cpp205 CvSparseMat* mat = (CvSparseMat*)hist->bins;
245 CvSparseMat* mat = (CvSparseMat*)hist->bins;
338 CvSparseMat* mat = (CvSparseMat*)hist->bins;
513 CvSparseMat* mat1 = (CvSparseMat*)(hist1->bins);
514 CvSparseMat* mat2 = (CvSparseMat*)(hist
[all...]
/external/opencv/ml/src/
H A Dml_inner_functions.cpp1260 const CvSparseMat* sparse = (const CvSparseMat*)sample;
1525 CvSparseMat** sparse_rows = 0;
1628 CvSparseMat* sparse = (CvSparseMat*)predict_input;
1641 CV_CALL( sparse_rows = (CvSparseMat**)cvAlloc( samples_selected*sizeof(sparse_rows[0])));
/external/opencv/cxcore/include/
H A Dcxtypes.h738 * Multi-dimensional sparse array (CvSparseMat) *
746 typedef struct CvSparseMat struct
760 CvSparseMat; typedef in typeref:struct:CvSparseMat
764 (((const CvSparseMat*)(mat))->type & CV_MAGIC_MASK) == CV_SPARSE_MAT_MAGIC_VAL)
780 CvSparseMat* mat;
H A Dcxcore.h254 /* Allocates and initializes CvSparseMat header and allocates data */
255 CVAPI(CvSparseMat*) cvCreateSparseMat( int dims, const int* sizes, int type );
257 /* Releases CvSparseMat */
258 CVAPI(void) cvReleaseSparseMat( CvSparseMat** mat );
260 /* Creates a copy of CvSparseMat (except, may be, zero items) */
261 CVAPI(CvSparseMat*) cvCloneSparseMat( const CvSparseMat* mat );
265 CVAPI(CvSparseNode*) cvInitSparseMatIterator( const CvSparseMat* mat,
345 For CvMatND or CvSparseMat number of infices should match number of <dims> and
399 If the resultant array is sparse, CvSparseMat heade
[all...]

Completed in 6144 milliseconds