/external/opencv/cxcore/src/ |
cximage.cpp | 258 bool CvMatrix::load( const char* filename, const char* matname, int color ) 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/opencv/cxcore/include/ |
cxcore.hpp | 236 CvMatrix( const char* filename, const char* matname=0, int color=-1 ) : matrix(0) 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 );
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
MatrixMarketIterator.h | 26 * 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/eigen/bench/spbench/ |
spbenchsolver.h | 503 statbuf << " <NAME> " << it.matname() << " </NAME>\n"; 525 cout<< " ====== SOLVING WITH MATRIX " << it.matname() << " ====\n";
|
/external/eigen/test/ |
sparse_solver.h | 219 std::cout<< " ==== SOLVING WITH MATRIX " << it.matname() << " ==== \n"; 305 std::cout<< " ==== SOLVING WITH MATRIX " << it.matname() << " ==== \n";
|