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

Function cvReadRawData

deps/opencv/modules/core/src/persistence.cpp:3400–3412  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3398
3399
3400CV_IMPL void
3401cvReadRawData( const CvFileStorage* fs, const CvFileNode* src,
3402 void* data, const char* dt )
3403{
3404 CvSeqReader reader;
3405
3406 if( !src || !data )
3407 CV_Error( CV_StsNullPtr, "Null pointers to source file node or destination array" );
3408
3409 cvStartReadRawData( fs, src, &reader );
3410 cvReadRawDataSlice( fs, &reader, CV_NODE_IS_SEQ(src->tag) ?
3411 src->data.seq->total : 1, data, dt );
3412}
3413
3414
3415static void

Callers 6

icvReadMatFunction · 0.85
icvReadMatNDFunction · 0.85
icvReadSparseMatFunction · 0.85
icvReadSeqFunction · 0.85
icvReadGraphFunction · 0.85
persistence.cppFile · 0.85

Calls 2

cvStartReadRawDataFunction · 0.85
cvReadRawDataSliceFunction · 0.85

Tested by

no test coverage detected