/external/opencv3/apps/traincascade/ |
D | old_ml.hpp | 147 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* fs, CvFileNode* node ); [all …]
|
D | old_ml_boost.cpp | 879 void CvBoostTree::read( CvFileStorage* fs, CvFileNode* fnode, CvBoost* _ensemble, CvDTreeTrainData*… in read() 885 void CvBoostTree::read( CvFileStorage*, CvFileNode* ) in read() argument 890 void CvBoostTree::read( CvFileStorage* _fs, CvFileNode* _node, in read() 1887 void CvBoost::write_params( CvFileStorage* fs ) const in write_params() 1918 void CvBoost::read_params( CvFileStorage* fs, CvFileNode* fnode ) in read_params() 1982 CvBoost::read( CvFileStorage* fs, CvFileNode* node ) in read() 2027 CvBoost::write( CvFileStorage* fs, const char* name ) const in write()
|
/external/opencv/ml/include/ |
D | ml.h | 198 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* fs, CvFileNode* node ); [all …]
|
/external/opencv/cxcore/include/ |
D | cxcore.hpp | 69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0) in CvImage() 72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0) in CvImage() 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) in CvMatrix() 242 CvMatrix( CvFileStorage* fs, const char* seqname, int idx ) : matrix(0) in CvMatrix() 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* fs, const char* matname );
|
D | cxcore.h | 1583 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* fs ); [all …]
|
D | cxtypes.h | 1629 typedef struct CvFileStorage CvFileStorage; typedef 1733 typedef void* (CV_CDECL *CvReadFunc)( CvFileStorage* storage, CvFileNode* node ); 1734 typedef void (CV_CDECL *CvWriteFunc)( CvFileStorage* storage, const char* name,
|
/external/opencv/cxcore/src/ |
D | cxpersistence.cpp | 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; argument 237 icvParseError( CvFileStorage* fs, const char* func_name, in icvParseError() [all …]
|
D | cximage.cpp | 147 bool CvImage::read( CvFileStorage* fs, const char* mapname, const char* imgname ) in read() 167 bool CvImage::read( CvFileStorage* fs, const char* seqname, int idx ) in read() 205 void CvImage::write( CvFileStorage* fs, const char* imgname ) in write() 300 bool CvMatrix::read( CvFileStorage* fs, const char* mapname, const char* matname ) in read() 320 bool CvMatrix::read( CvFileStorage* fs, const char* seqname, int idx ) in read() 358 void CvMatrix::write( CvFileStorage* fs, const char* matname ) in write()
|
/external/opencv3/modules/core/src/ |
D | persistence.cpp | 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; argument 245 static void icvPuts( CvFileStorage* fs, const char* str ) in icvPuts() [all …]
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | persistence.hpp | 90 typedef struct CvFileStorage CvFileStorage; typedef 342 FileStorage(CvFileStorage* fs, bool owning=true); 406 CvFileStorage* operator *() { return fs.get(); } in operator *() 409 const CvFileStorage* operator *() const { return fs.get(); } in operator *() 434 Ptr<CvFileStorage> fs; //!< the underlying C FileStorage structure 440 template<> CV_EXPORTS void DefaultDeleter<CvFileStorage>::operator ()(CvFileStorage* obj) const; 486 FileNode(const CvFileStorage* fs, const CvFileNode* node); 570 const CvFileStorage* fs; 595 FileNodeIterator(const CvFileStorage* fs, const CvFileNode* node, size_t ofs=0); 643 const CvFileStorage* fs; [all …]
|
D | core_c.h | 1990 CVAPI(CvFileStorage*) cvOpenFileStorage( const char* filename, CvMemStorage* memstorage, 1999 CVAPI(void) cvReleaseFileStorage( CvFileStorage** fs ); 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 ); 2074 CVAPI(void) cvWriteReal( CvFileStorage* fs, const char* name, double value ); 2087 CVAPI(void) cvWriteString( CvFileStorage* fs, const char* name, 2099 CVAPI(void) cvWriteComment( CvFileStorage* fs, const char* comment, 2147 CVAPI(void) cvWrite( CvFileStorage* fs, const char* name, const void* ptr, 2174 CVAPI(void) cvStartNextStream( CvFileStorage* fs ); [all …]
|
D | types_c.h | 1659 typedef struct CvFileStorage CvFileStorage; typedef 1775 typedef void* (CV_CDECL *CvReadFunc)( CvFileStorage* storage, CvFileNode* node ); 1776 typedef void (CV_CDECL *CvWriteFunc)( CvFileStorage* storage, const char* name,
|
/external/opencv/ml/src/ |
D | mlrtrees.cpp | 161 void CvForestTree::read( CvFileStorage* fs, CvFileNode* fnode, CvRTrees* _forest, CvDTreeTrainData*… in read() 168 void CvForestTree::read( CvFileStorage*, CvFileNode* ) in read() argument 173 void CvForestTree::read( CvFileStorage* _fs, CvFileNode* _node, in read() 578 void CvRTrees::write( CvFileStorage* fs, const char* name ) in write() 619 void CvRTrees::read( CvFileStorage* fs, CvFileNode* fnode ) in read()
|
D | mlboost.cpp | 773 void CvBoostTree::read( CvFileStorage* fs, CvFileNode* fnode, CvBoost* _ensemble, CvDTreeTrainData*… in read() 780 void CvBoostTree::read( CvFileStorage*, CvFileNode* ) in read() argument 785 void CvBoostTree::read( CvFileStorage* _fs, CvFileNode* _node, in read() 1443 void CvBoost::write_params( CvFileStorage* fs ) in write_params() 1480 void CvBoost::read_params( CvFileStorage* fs, CvFileNode* fnode ) in read_params() 1544 CvBoost::read( CvFileStorage* fs, CvFileNode* node ) in read() 1588 CvBoost::write( CvFileStorage* fs, const char* name ) in write()
|
D | mltree.cpp | 1002 void CvDTreeTrainData::write_params( CvFileStorage* fs ) in write_params() 1064 void CvDTreeTrainData::read_params( CvFileStorage* fs, CvFileNode* node ) in read_params() 3051 void CvDTree::write_split( CvFileStorage* fs, CvDTreeSplit* split ) in write_split() 3088 void CvDTree::write_node( CvFileStorage* fs, CvDTreeNode* node ) in write_node() 3122 void CvDTree::write_tree_nodes( CvFileStorage* fs ) in write_tree_nodes() 3156 void CvDTree::write( CvFileStorage* fs, const char* name ) in write() 3176 void CvDTree::write( CvFileStorage* fs ) in write() 3192 CvDTreeSplit* CvDTree::read_split( CvFileStorage* fs, CvFileNode* fnode ) in read_split() 3280 CvDTreeNode* CvDTree::read_node( CvFileStorage* fs, CvFileNode* fnode, CvDTreeNode* parent ) in read_node() 3340 void CvDTree::read_tree_nodes( CvFileStorage* fs, CvFileNode* fnode ) in read_tree_nodes() [all …]
|
D | mlnbayes.cpp | 397 void CvNormalBayesClassifier::write( CvFileStorage* fs, const char* name ) in write() 454 void CvNormalBayesClassifier::read( CvFileStorage* fs, CvFileNode* root_node ) in read()
|
/external/opencv3/modules/ts/include/opencv2/ |
D | ts.hpp | 221 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/cvaux/include/ |
D | cvvidsurv.hpp | 374 virtual void SaveState(CvFileStorage*){}; in SaveState() argument 375 virtual void LoadState(CvFileStorage*, CvFileNode*){}; in LoadState() argument 379 void inline cvWriteStruct(CvFileStorage* fs, const char* name, void* addr, char* desc, int num=1) in cvWriteStruct() 385 void inline cvReadStructByName(CvFileStorage* fs, CvFileNode* node, const char* name, void* addr, c… in cvReadStructByName() 507 virtual void Write(CvFileStorage* fs, const char* name) in Write() 515 virtual void Load(CvFileStorage* fs, CvFileNode* node) in Load()
|
/external/opencv3/modules/ml/test/ |
D | test_precomp.hpp | 48 virtual int read_params( CvFileStorage* fs );
|
/external/opencv3/modules/calib3d/test/ |
D | test_fundam.cpp | 524 int read_params( CvFileStorage* fs ); 558 int CV_RodriguesTest::read_params( CvFileStorage* fs ) in read_params() 766 int read_params( CvFileStorage* fs ); 821 int CV_FundamentalMatTest::read_params( CvFileStorage* fs ) in read_params() 1062 int read_params( CvFileStorage* fs ); 1120 int CV_EssentialMatTest::read_params( CvFileStorage* fs ) in read_params() 1425 int read_params( CvFileStorage* fs ); 1448 int CV_ConvertHomogeneousTest::read_params( CvFileStorage* fs ) in read_params() 1558 int read_params( CvFileStorage* fs ); 1583 int CV_ComputeEpilinesTest::read_params( CvFileStorage* fs ) in read_params()
|
D | test_chesscorners_timing.cpp | 80 CvFileStorage* fs = cvOpenFileStorage( filename.c_str(), 0, CV_STORAGE_READ ); in run()
|
/external/opencv3/modules/ts/src/ |
D | ts.cpp | 183 const CvFileNode* BaseTest::find_param( CvFileStorage* fs, const char* param_name ) in find_param() 190 int BaseTest::read_params( CvFileStorage* ) in read_params() argument 521 CvFileStorage* TS::get_file_storage() { return 0; } in get_file_storage()
|
/external/opencv3/modules/imgproc/test/ |
D | test_templmatch.cpp | 53 int read_params( CvFileStorage* fs ); 79 int CV_TemplMatchTest::read_params( CvFileStorage* fs ) in read_params()
|
D | test_contours.cpp | 58 int read_params( CvFileStorage* fs ); 115 int CV_FindContourTest::read_params( CvFileStorage* fs ) in read_params()
|
/external/opencv3/modules/ml/src/ |
D | gbt.cpp | 1007 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 )
|