Home | History | Annotate | Download | only in test

Lines Matching full:sparse

757         CvSparseMat* sparse = (CvSparseMat*)hist[0]->bins;
761 for( node = cvInitSparseMatIterator( sparse, &iterator );
764 sum += *(float*)CV_NODE_VAL(sparse,node);
850 CvSparseMat* sparse = (CvSparseMat*)hist[0]->bins;
855 orig_nz_count = sparse->heap->active_count;
860 for( node = cvInitSparseMatIterator( sparse, &iterator ), i = 0;
863 const int* idx = CV_NODE_IDX(sparse,node);
867 values->data.fl[i] = *(float*)CV_NODE_VAL(sparse,node);
893 CvSparseMat* sparse = 0;
898 sparse = (CvSparseMat*)hist[0]->bins;
910 v = (float)cvGetRealND( sparse, indices->data.i + i*cdims );
911 cvClearND( sparse, indices->data.i + i*cdims );
932 if( sparse->heap->active_count > 0 )
935 "There some extra histogram bins in the sparse histogram after the thresholding\n" );