This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <fstream> | |
void writeCSV(string filename, Mat m) | |
{ | |
ofstream myfile; | |
myfile.open(filename.c_str()); | |
myfile<< cv::format(m, cv::Formatter::FMT_CSV) << std::endl; | |
myfile.close(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
######################################### | |
# created by | |
# Zhou Chao | |
# at | |
# 2014.11 | |
# args | |
# $1: tex file name to be edited | |
######################################### |