MCPcopy Create free account
hub / github.com/creatale/node-dv / cvReleaseGraphScanner

Function cvReleaseGraphScanner

deps/opencv/modules/core/src/datastructs.cpp:3074–3086  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3072
3073
3074CV_IMPL void
3075cvReleaseGraphScanner( CvGraphScanner** scanner )
3076{
3077 if( !scanner )
3078 CV_Error( CV_StsNullPtr, "Null double pointer to graph scanner" );
3079
3080 if( *scanner )
3081 {
3082 if( (*scanner)->stack )
3083 cvReleaseMemStorage( &((*scanner)->stack->storage));
3084 cvFree( scanner );
3085 }
3086}
3087
3088
3089CV_IMPL int

Callers 1

core_c.hFile · 0.85

Calls 1

cvReleaseMemStorageFunction · 0.85

Tested by

no test coverage detected