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

  /external/opencv3/modules/core/test/
test_io.cpp 38 static bool cvTsCheckSparse(const CvSparseMat* m1, const CvSparseMat* m2, double eps)
281 Ptr<CvSparseMat> m_s((CvSparseMat*)fs["test_sparse_mat"].readObj());
282 Ptr<CvSparseMat> _test_sparse_(cvCreateSparseMat(test_sparse_mat));
283 Ptr<CvSparseMat> _test_sparse((CvSparseMat*)cvClone(_test_sparse_));
286 Ptr<CvSparseMat> _m_s2(cvCreateSparseMat(m_s2));
test_mat.cpp 599 static double getValue(const CvSparseMat* M, const int* idx)
625 static void eraseValue(CvSparseMat* M, const int* idx)
814 Ptr<CvSparseMat> M2(cvCreateSparseMat(M));
    [all...]
  /external/opencv3/modules/core/src/
array.cpp 530 * CvSparseMat creation and basic operations *
535 CV_IMPL CvSparseMat*
559 CvSparseMat* arr = (CvSparseMat*)cvAlloc(sizeof(*arr)+MAX(0,dims-CV_MAX_DIM)*sizeof(arr->size[0]));
586 cvReleaseSparseMat( CvSparseMat** array )
593 CvSparseMat* arr = *array;
609 CV_IMPL CvSparseMat*
610 cvCloneSparseMat( const CvSparseMat* src )
615 CvSparseMat* dst = cvCreateSparseMat( src->dims, src->size, src->type );
622 cvInitSparseMatIterator( const CvSparseMat* mat, CvSparseMatIterator* iterator
    [all...]
copy.cpp     [all...]
persistence.cpp     [all...]
matrix.cpp     [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 633 * 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* mat, CvSparseMatIterator* iterator
    [all...]
cxcopy.cpp 304 CvSparseMat* src1 = (CvSparseMat*)src;
305 CvSparseMat* dst1 = (CvSparseMat*)dst;
712 CvSparseMat* mat1 = (CvSparseMat*)mat;
    [all...]
cxpersistence.cpp     [all...]
  /external/opencv3/modules/imgproc/test/
test_histograms.cpp 634 ((CvSparseMat*)hist[0]->bins)->copyToSparseMat(h);
719 ((CvSparseMat*)hist[0]->bins)->heap->active_count == 0 )
732 ((CvSparseMat*)hist[0]->bins)->copyToSparseMat(h);
734 cvReleaseSparseMat((CvSparseMat**)&hist[0]->bins);
757 CvSparseMat* sparse = (CvSparseMat*)hist[0]->bins;
850 CvSparseMat* sparse = (CvSparseMat*)hist[0]->bins;
893 CvSparseMat* sparse = 0;
898 sparse = (CvSparseMat*)hist[0]->bins
    [all...]
  /external/opencv/cv/src/
cvhistogram.cpp 205 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*)(hist2->bins)
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 665 * Multi-dimensional sparse array (CvSparseMat) *
677 CvSparseMat
695 CvSparseMat;
698 CV_EXPORTS CvSparseMat* cvCreateSparseMat(const cv::SparseMat& m);
703 (((const CvSparseMat*)(mat))->type & CV_MAGIC_MASK) == CV_SPARSE_MAT_MAGIC_VAL)
719 CvSparseMat* mat;
    [all...]
core_c.h 492 CVAPI(CvSparseMat*) cvCreateSparseMat( int dims, const int* sizes, int type );
499 CVAPI(void) cvReleaseSparseMat( CvSparseMat** mat );
501 /** Creates a copy of CvSparseMat (except, may be, zero items) */
502 CVAPI(CvSparseMat*) cvCloneSparseMat( const CvSparseMat* mat );
511 CVAPI(CvSparseNode*) cvInitSparseMatIterator( const CvSparseMat* mat,
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp     [all...]
  /external/opencv3/modules/imgproc/src/
histogram.cpp     [all...]
  /external/opencv/cxcore/include/
cxtypes.h 738 * Multi-dimensional sparse array (CvSparseMat) *
746 typedef struct CvSparseMat
760 CvSparseMat;
764 (((const CvSparseMat*)(mat))->type & CV_MAGIC_MASK) == CV_SPARSE_MAT_MAGIC_VAL)
780 CvSparseMat* mat;
    [all...]
cxcore.h 254 /* 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 header should be passe
    [all...]

Completed in 586 milliseconds