/external/opencv3/apps/traincascade/ |
boost.cpp | 547 tree_storage = cvCreateMemStorage( treeBlockSize ); 548 node_heap = cvCreateSet( 0, sizeof(node_heap[0]), sizeof(CvDTreeNode), tree_storage ); 549 split_heap = cvCreateSet( 0, sizeof(split_heap[0]), maxSplitSize, tree_storage ); 666 tree_storage = cvCreateMemStorage( treeBlockSize ); 667 node_heap = cvCreateSet( 0, sizeof(*node_heap), sizeof(CvDTreeNode), tree_storage ); 700 split_heap = cvCreateSet( 0, sizeof(*split_heap), maxSplitSize, tree_storage ); [all...] |
old_ml_tree.cpp | 55 tree_storage = temp_storage = 0; 71 tree_storage = temp_storage = 0; 352 CV_CALL( tree_storage = cvCreateMemStorage( tree_block_size )); 353 CV_CALL( node_heap = cvCreateSet( 0, sizeof(*node_heap), sizeof(CvDTreeNode), tree_storage )); 643 CV_CALL( split_heap = cvCreateSet( 0, sizeof(*split_heap), max_split_size, tree_storage )); [all...] |
old_ml.hpp | 746 CvMemStorage* tree_storage; member in struct:CvDTreeTrainData [all...] |
/external/opencv/ml/src/ |
mltree.cpp | 51 tree_storage = temp_storage = 0; 65 tree_storage = temp_storage = 0; 276 CV_CALL( tree_storage = cvCreateMemStorage( tree_block_size )); 277 CV_CALL( node_heap = cvCreateSet( 0, sizeof(*node_heap), sizeof(CvDTreeNode), tree_storage )); 506 CV_CALL( split_heap = cvCreateSet( 0, sizeof(*split_heap), max_split_size, tree_storage )); 916 cvReleaseMemStorage( &tree_storage ); [all...] |
/external/opencv/ml/include/ |
ml.h | 817 CvMemStorage* tree_storage; member in struct:CvDTreeTrainData [all...] |