storage.cpp
上传用户:banwdc
上传日期:2016-06-25
资源大小:2871k
文件大小:0k
源码类别:

OpenCV

开发平台:

Visual C++

  1. #include "cxcore.h"
  2. int main( int argc, char** argv )
  3. {
  4.     CvMat* mat = cvCreateMat( 3, 3, CV_32F );
  5.     CvFileStorage* fs = cvOpenFileStorage( "example.yml", 0, CV_STORAGE_WRITE );
  6.     cvSetIdentity( mat );
  7.     cvWrite( fs, "A", mat, cvAttrList(0,0) );
  8.     cvReleaseFileStorage( &fs );
  9.     cvReleaseMat( &mat );
  10.     return 0;
  11. }