| 203 | public: |
| 204 | virtual ~CSVFormatter() {} |
| 205 | void write(std::ostream& out, const Mat& m, const int*, int) const |
| 206 | { |
| 207 | writeMat(out, m, ' ', ' ', m.rows*m.channels() == 1); |
| 208 | if(m.rows > 1) |
| 209 | out << "\n"; |
| 210 | } |
| 211 | |
| 212 | void write(std::ostream& out, const void* data, int nelems, int type, const int*, int) const |
| 213 | { |
nothing calls this directly
no test coverage detected