Searched refs:CvFileStorage (Results 1 - 25 of 46) sorted by relevance

12

/external/opencv/ml/include/
H A Dml.h198 virtual void write( CvFileStorage* storage, const char* name );
199 virtual void read( CvFileStorage* storage, CvFileNode* node );
253 virtual void write( CvFileStorage* storage, const char* name );
254 virtual void read( CvFileStorage* storage, CvFileNode* node );
523 virtual void write( CvFileStorage* storage, const char* name );
524 virtual void read( CvFileStorage* storage, CvFileNode* node );
538 virtual void write_params( CvFileStorage* fs );
539 virtual void read_params( CvFileStorage* fs, CvFileNode* node );
761 virtual void write_params( CvFileStorage* fs );
762 virtual void read_params( CvFileStorage* f
[all...]
/external/opencv/cxcore/src/
H A Dcximage.cpp147 bool CvImage::read( CvFileStorage* fs, const char* mapname, const char* imgname )
167 bool CvImage::read( CvFileStorage* fs, const char* seqname, int idx )
205 void CvImage::write( CvFileStorage* fs, const char* imgname )
300 bool CvMatrix::read( CvFileStorage* fs, const char* mapname, const char* matname )
320 bool CvMatrix::read( CvFileStorage* fs, const char* seqname, int idx )
358 void CvMatrix::write( CvFileStorage* fs, const char* matname )
H A Dcxpersistence.cpp107 //typedef void (*CvParse)( struct CvFileStorage* fs );
108 typedef void (*CvStartWriteStruct)( struct CvFileStorage* fs, const char* key,
110 typedef void (*CvEndWriteStruct)( struct CvFileStorage* fs );
111 typedef void (*CvWriteInt)( struct CvFileStorage* fs, const char* key, int value );
112 typedef void (*CvWriteReal)( struct CvFileStorage* fs, const char* key, double value );
113 typedef void (*CvWriteString)( struct CvFileStorage* fs, const char* key,
115 typedef void (*CvWriteComment)( struct CvFileStorage* fs, const char* comment, int eol_comment );
116 typedef void (*CvStartNextStream)( struct CvFileStorage* fs );
118 typedef struct CvFileStorage struct
154 CvFileStorage; typedef in typeref:struct:CvFileStorage
[all...]
/external/opencv/cxcore/include/
H A Dcxcore.hpp69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0)
72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0)
120 bool read( CvFileStorage* fs, const char* mapname, const char* imgname );
121 bool read( CvFileStorage* fs, const char* seqname, int idx );
123 void write( CvFileStorage* fs, const char* imgname );
239 CvMatrix( CvFileStorage* fs, const char* mapname, const char* matname ) : matrix(0)
242 CvMatrix( CvFileStorage* fs, const char* seqname, int idx ) : matrix(0)
303 bool read( CvFileStorage* fs, const char* mapname, const char* matname );
304 bool read( CvFileStorage* fs, const char* seqname, int idx );
306 void write( CvFileStorage* f
[all...]
H A Dcxcore.h1583 CVAPI(CvFileStorage*) cvOpenFileStorage( const char* filename,
1588 CVAPI(void) cvReleaseFileStorage( CvFileStorage** fs );
1594 CVAPI(void) cvStartWriteStruct( CvFileStorage* fs, const char* name,
1599 CVAPI(void) cvEndWriteStruct( CvFileStorage* fs );
1602 CVAPI(void) cvWriteInt( CvFileStorage* fs, const char* name, int value );
1605 CVAPI(void) cvWriteReal( CvFileStorage* fs, const char* name, double value );
1608 CVAPI(void) cvWriteString( CvFileStorage* fs, const char* name,
1612 CVAPI(void) cvWriteComment( CvFileStorage* fs, const char* comment,
1617 CVAPI(void) cvWrite( CvFileStorage* fs, const char* name, const void* ptr,
1621 CVAPI(void) cvStartNextStream( CvFileStorage* f
[all...]
H A Dcxtypes.h1629 typedef struct CvFileStorage CvFileStorage; typedef in typeref:struct:CvFileStorage
1733 typedef void* (CV_CDECL *CvReadFunc)( CvFileStorage* storage, CvFileNode* node );
1734 typedef void (CV_CDECL *CvWriteFunc)( CvFileStorage* storage, const char* name,
/external/opencv3/apps/traincascade/
H A Dold_ml.hpp147 virtual void write( CvFileStorage* storage, const char* name ) const;
148 virtual void read( CvFileStorage* storage, CvFileNode* node );
213 virtual void write( CvFileStorage* storage, const char* name ) const;
214 virtual void read( CvFileStorage* storage, CvFileNode* node );
524 virtual void write( CvFileStorage* storage, const char* name ) const;
525 virtual void read( CvFileStorage* storage, CvFileNode* node );
541 virtual void write_params( CvFileStorage* fs ) const;
542 virtual void read_params( CvFileStorage* fs, CvFileNode* node );
676 virtual void write_params( CvFileStorage* fs ) const;
677 virtual void read_params( CvFileStorage* f
[all...]
/external/opencv3/modules/core/src/
H A Dpersistence.cpp190 //typedef void (*CvParse)( struct CvFileStorage* fs );
191 typedef void (*CvStartWriteStruct)( struct CvFileStorage* fs, const char* key,
193 typedef void (*CvEndWriteStruct)( struct CvFileStorage* fs );
194 typedef void (*CvWriteInt)( struct CvFileStorage* fs, const char* key, int value );
195 typedef void (*CvWriteReal)( struct CvFileStorage* fs, const char* key, double value );
196 typedef void (*CvWriteString)( struct CvFileStorage* fs, const char* key,
198 typedef void (*CvWriteComment)( struct CvFileStorage* fs, const char* comment, int eol_comment );
199 typedef void (*CvStartNextStream)( struct CvFileStorage* fs );
201 typedef struct CvFileStorage struct
243 CvFileStorage; typedef in typeref:struct:CvFileStorage
[all...]
/external/opencv3/modules/core/include/opencv2/core/
H A Dpersistence.hpp56 Several functions that are described below take CvFileStorage\* as inputs and allow the user to
90 typedef struct CvFileStorage CvFileStorage; typedef in typeref:struct:CvFileStorage
342 FileStorage(CvFileStorage* fs, bool owning=true);
406 CvFileStorage* operator *() { return fs.get(); }
409 const CvFileStorage* operator *() const { return fs.get(); }
434 Ptr<CvFileStorage> fs; //!< the underlying C FileStorage structure
440 template<> CV_EXPORTS void DefaultDeleter<CvFileStorage>::operator ()(CvFileStorage* obj) const;
486 FileNode(const CvFileStorage* f
[all...]
H A Dcore_c.h1980 CvFileStorage structure. If the file cannot be opened then the function returns NULL.
1990 CVAPI(CvFileStorage*) cvOpenFileStorage( const char* filename, CvMemStorage* memstorage,
1999 CVAPI(void) cvReleaseFileStorage( CvFileStorage** fs );
2014 - **CV_NODE_SEQ** the written structure is a sequence (see discussion of CvFileStorage ),
2016 - **CV_NODE_MAP** the written structure is a map (see discussion of CvFileStorage ), that
2025 CvFileStorage description). Mainly it is used with user objects. When the storage is read, the
2029 CVAPI(void) cvStartWriteStruct( CvFileStorage* fs, const char* name,
2037 CVAPI(void) cvEndWriteStruct( CvFileStorage* fs );
2047 CVAPI(void) cvWriteInt( CvFileStorage* fs, const char* name, int value );
2057 void write_termcriteria( CvFileStorage* f
[all...]
H A Dtypes_c.h1659 typedef struct CvFileStorage CvFileStorage; typedef in typeref:struct:CvFileStorage
1775 typedef void* (CV_CDECL *CvReadFunc)( CvFileStorage* storage, CvFileNode* node );
1776 typedef void (CV_CDECL *CvWriteFunc)( CvFileStorage* storage, const char* name,
/external/opencv3/modules/ml/test/
H A Dtest_precomp.hpp48 virtual int read_params( CvFileStorage* fs );
/external/opencv3/modules/ts/include/opencv2/
H A Dts.hpp221 virtual int read_params( CvFileStorage* fs );
239 const CvFileNode* find_param( CvFileStorage* fs, const char* param_name );
401 CvFileStorage* get_file_storage();
448 virtual int read_params( CvFileStorage* fs );
/external/opencv/ml/src/
H A Dmlrtrees.cpp161 void CvForestTree::read( CvFileStorage* fs, CvFileNode* fnode, CvRTrees* _forest, CvDTreeTrainData* _data )
168 void CvForestTree::read( CvFileStorage*, CvFileNode* ) argument
173 void CvForestTree::read( CvFileStorage* _fs, CvFileNode* _node,
578 void CvRTrees::write( CvFileStorage* fs, const char* name )
619 void CvRTrees::read( CvFileStorage* fs, CvFileNode* fnode )
H A Dmlboost.cpp773 void CvBoostTree::read( CvFileStorage* fs, CvFileNode* fnode, CvBoost* _ensemble, CvDTreeTrainData* _data )
780 void CvBoostTree::read( CvFileStorage*, CvFileNode* ) argument
785 void CvBoostTree::read( CvFileStorage* _fs, CvFileNode* _node,
1443 void CvBoost::write_params( CvFileStorage* fs )
1480 void CvBoost::read_params( CvFileStorage* fs, CvFileNode* fnode )
1544 CvBoost::read( CvFileStorage* fs, CvFileNode* node )
1588 CvBoost::write( CvFileStorage* fs, const char* name )
H A Dmlnbayes.cpp397 void CvNormalBayesClassifier::write( CvFileStorage* fs, const char* name )
454 void CvNormalBayesClassifier::read( CvFileStorage* fs, CvFileNode* root_node )
/external/opencv3/modules/calib3d/test/
H A Dtest_chesscorners_timing.cpp80 CvFileStorage* fs = cvOpenFileStorage( filename.c_str(), 0, CV_STORAGE_READ );
H A Dtest_fundam.cpp524 int read_params( CvFileStorage* fs );
558 int CV_RodriguesTest::read_params( CvFileStorage* fs )
766 int read_params( CvFileStorage* fs );
821 int CV_FundamentalMatTest::read_params( CvFileStorage* fs )
1062 int read_params( CvFileStorage* fs );
1120 int CV_EssentialMatTest::read_params( CvFileStorage* fs )
1425 int read_params( CvFileStorage* fs );
1448 int CV_ConvertHomogeneousTest::read_params( CvFileStorage* fs )
1558 int read_params( CvFileStorage* fs );
1583 int CV_ComputeEpilinesTest::read_params( CvFileStorage* f
[all...]
/external/opencv/cvaux/include/
H A Dcvvidsurv.hpp374 virtual void SaveState(CvFileStorage*){};
375 virtual void LoadState(CvFileStorage*, CvFileNode*){};
379 void inline cvWriteStruct(CvFileStorage* fs, const char* name, void* addr, char* desc, int num=1)
385 void inline cvReadStructByName(CvFileStorage* fs, CvFileNode* node, const char* name, void* addr, char* desc)
507 virtual void Write(CvFileStorage* fs, const char* name)
515 virtual void Load(CvFileStorage* fs, CvFileNode* node)
/external/opencv3/modules/ts/src/
H A Dts.cpp183 const CvFileNode* BaseTest::find_param( CvFileStorage* fs, const char* param_name )
190 int BaseTest::read_params( CvFileStorage* )
521 CvFileStorage* TS::get_file_storage() { return 0; }
H A Dts_arrtest.cpp83 int ArrayTest::read_params( CvFileStorage* fs )
/external/opencv3/modules/imgproc/test/
H A Dtest_contours.cpp58 int read_params( CvFileStorage* fs );
115 int CV_FindContourTest::read_params( CvFileStorage* fs )
H A Dtest_templmatch.cpp53 int read_params( CvFileStorage* fs );
79 int CV_TemplMatchTest::read_params( CvFileStorage* fs )
318 CvFileStorage* fs = cvOpenFileStorage( "_match_template.yml", 0, CV_STORAGE_WRITE );
/external/opencv3/modules/ml/src/
H A Dgbt.cpp1007 void CvGBTrees::write_params( CvFileStorage* fs ) const
1036 void CvGBTrees::read_params( CvFileStorage* fs, CvFileNode* fnode )
1095 void CvGBTrees::write( CvFileStorage* fs, const char* name ) const
1142 void CvGBTrees::read( CvFileStorage* fs, CvFileNode* node )
/external/opencv3/modules/video/test/
H A Dtest_camshift.cpp56 int read_params( CvFileStorage* fs );
93 int CV_TrackBaseTest::read_params( CvFileStorage* fs )

Completed in 420 milliseconds

12