Searched defs:temp_storage (Results 1 - 9 of 9) sorted by relevance

/external/opencv/cv/src/
H A Dcvapprox.cpp530 CvMemStorage* temp_storage = 0; local
542 temp_storage = cvCreateChildMemStorage( storage );
545 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage );
714 cvReleaseMemStorage( &temp_storage );
734 CvMemStorage* temp_storage = 0; local
746 temp_storage = cvCreateChildMemStorage( storage );
749 stack = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvSlice), temp_storage );
919 cvReleaseMemStorage( &temp_storage );
H A Dcvrotcalipers.cpp350 CvMemStorage* temp_storage = 0; local
385 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
389 CV_CALL( temp_storage = cvCreateMemStorage(1 << 10));
394 CV_CALL( ptseq = cvConvexHull2( ptseq, temp_storage, CV_CLOCKWISE, 1 ));
406 temp_storage, &writer );
469 cvReleaseMemStorage( &temp_storage );
H A Dcvpyrsegmentation.cpp203 CvMemStorage *temp_storage = 0; local
232 temp_storage = cvCreateChildMemStorage( storage );
235 cmp_seq = cvCreateSeq( 0, sizeof( CvSeq ), sizeof( _CvListNode ), temp_storage );
580 cvReleaseMemStorage( &temp_storage );
617 CvMemStorage *temp_storage = 0; local
649 temp_storage = cvCreateChildMemStorage( storage );
652 cmp_seq = cvCreateSeq( 0, sizeof( CvSeq ), sizeof( _CvListNode ), temp_storage );
1015 cvReleaseMemStorage( &temp_storage );
H A Dcvcalibinit.cpp543 CvMemStorage* temp_storage = cvCreateChildMemStorage( storage ); local
544 CvSeq* stack = cvCreateSeq( 0, sizeof(*stack), sizeof(void*), temp_storage );
560 cvReleaseMemStorage( &temp_storage );
623 cvReleaseMemStorage( &temp_storage );
1021 CvMemStorage *temp_storage = 0; local
1040 CV_CALL( temp_storage = cvCreateMemStorage(0));
1084 CvSeq *hull = cvConvexHull2( &pointMat, temp_storage, CV_CLOCKWISE, 1 );
1094 cvClearMemStorage( temp_storage );
1129 cvReleaseMemStorage( &temp_storage );
1141 CvMemStorage* temp_storage local
1598 CvMemStorage *temp_storage = 0; local
1776 CvMemStorage *temp_storage = 0; local
[all...]
H A DmycvHaarDetectObjects.cpp882 CvMemStorage* temp_storage = 0; local
930 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
938 seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
939 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage );
1152 big_seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
1561 cvReleaseMemStorage( &temp_storage );
H A Dcvhaar.cpp866 CvMemStorage* temp_storage = 0; local
902 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
910 seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
911 seq2 = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvAvgComp), temp_storage );
1120 big_seq = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvRect), temp_storage );
1521 cvReleaseMemStorage( &temp_storage );
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp2603 CvMemStorage* temp_storage = 0; local
2630 temp_storage = cvCreateChildMemStorage( storage );
2632 nodes = cvCreateSeq( 0, sizeof(CvSeq), sizeof(CvPTreeNode), temp_storage );
2748 cvReleaseMemStorage( &temp_storage );
/external/opencv/ml/src/
H A Dmlsvm.cpp1317 const CvMat* responses, CvMemStorage* temp_storage, double* alpha )
1338 responses->data.i, 0, 0, temp_storage, alpha, df->rho ))
1385 CV_CALL( sv_tab = (int*)cvMemStorageAlloc( temp_storage, sample_count*sizeof(sv_tab[0]) ));
1387 CV_CALL( class_ranges = (int*)cvMemStorageAlloc( temp_storage,
1389 CV_CALL( temp_samples = (const float**)cvMemStorageAlloc( temp_storage,
1391 CV_CALL( temp_y = (schar*)cvMemStorageAlloc( temp_storage, sample_count));
1447 Cp, Cn, temp_storage, alpha, df->rho ))
1455 CV_CALL( df->alpha = (double*)cvMemStorageAlloc( temp_storage,
1457 CV_CALL( df->sv_index = (int*)cvMemStorageAlloc( temp_storage,
1530 CvMemStorage* temp_storage local
1316 do_train( int svm_type, int sample_count, int var_count, const float** samples, const CvMat* responses, CvMemStorage* temp_storage, double* alpha ) argument
1598 CvMemStorage* temp_storage = 0; local
[all...]
/external/opencv/ml/include/
H A Dml.h818 CvMemStorage* temp_storage; member in struct:CvDTreeTrainData

Completed in 2427 milliseconds