Simplify printing procedures

Use opencv's print() procedure in place of my own procedures to output
matrices and std::vectors.

Interestingly enough, operator<< does not work for matrices, when called
from my .cpp files in src/ subfolder of the optim module, although it
works when called from tests and stand-alone programs, compiled with
opencv. I think, this requires investigation and, maybe, bug report.
This commit is contained in:
Alex Leontiev
2013-07-19 12:34:33 +03:00
parent 459c16ca99
commit 33e7640fb0
2 changed files with 9 additions and 46 deletions

View File

@@ -44,7 +44,6 @@
#define __OPENCV_OPTIM_HPP__
#include "opencv2/core.hpp"
#include <iostream>
namespace cv{namespace optim
{