Searched defs:matname (Results 1 - 3 of 3) sorted by relevance

/external/opencv/cxcore/src/
H A Dcximage.cpp258 bool CvMatrix::load( const char* filename, const char* matname, int color ) argument
268 m = icvRetrieveMatrix(cvLoad(filename,0,matname));
300 bool CvMatrix::read( CvFileStorage* fs, const char* mapname, const char* matname )
309 obj = cvReadByName( fs, mapnode, matname );
312 obj = cvReadByName( fs, 0, matname );
335 void CvMatrix::save( const char* filename, const char* matname )
343 cvSave( filename, matrix, matname );
358 void CvMatrix::write( CvFileStorage* fs, const char* matname )
361 cvWrite( fs, matname, matrix );
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DMatrixMarketIterator.h26 * It is assumed that the matrices are named as matname.mtx
149 inline std::string& matname() { return m_matname; } function in class:Eigen::MatrixMarketIterator
/external/opencv/cxcore/include/
H A Dcxcore.hpp236 CvMatrix( const char* filename, const char* matname=0, int color=-1 ) : matrix(0) argument
237 { load( filename, matname, color ); }
239 CvMatrix( CvFileStorage* fs, const char* mapname, const char* matname ) : matrix(0)
240 { read( fs, mapname, matname ); }
302 bool load( const char* filename, const char* matname=0, int color=-1 );
303 bool read( CvFileStorage* fs, const char* mapname, const char* matname );
305 void save( const char* filename, const char* matname );
306 void write( CvFileStorage* fs, const char* matname );

Completed in 1321 milliseconds