相关代码 |
|
// 用cvSave存储矩阵到xml文件 // /* #include "cxcore.h" #include void main() { CvMat* mat = cvCreateMat( 3, 3, CV_32SC1); cvSetIdentity(mat); //生成单位矩阵 //-----------把mat写入mat.xml文件------------- cvSave("mat.xml", mat); cvReleaseMat(&mat); } //*/
相关资源 |
|