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

Function cvSaveMemStoragePos

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

Remember memory storage position: */

Source from the content-addressed store, hash-verified

264
265/* Remember memory storage position: */
266CV_IMPL void
267cvSaveMemStoragePos( const CvMemStorage * storage, CvMemStoragePos * pos )
268{
269 if( !storage || !pos )
270 CV_Error( CV_StsNullPtr, "" );
271
272 pos->top = storage->top;
273 pos->free_space = storage->free_space;
274}
275
276
277/* Restore memory storage position: */

Callers 5

icvGoNextMemBlockFunction · 0.85
icvXMLStartWriteStructFunction · 0.85
icvEndProcessContourFunction · 0.85
cvFindNextContourFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected