1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

Fixed some warnings

This commit is contained in:
Alexey Spizhevoy
2012-03-21 07:35:25 +00:00
parent fa4977dff4
commit 5e2bcacba5
6 changed files with 29 additions and 21 deletions
@@ -64,7 +64,7 @@ CV_EXPORTS Mat estimateGlobalMotionLeastSquares(
const std::vector<Point2f> &points0, const std::vector<Point2f> &points1,
int model = AFFINE, float *rmse = 0);
CV_EXPORTS struct RansacParams
struct CV_EXPORTS RansacParams
{
int size; // subset size
float thresh; // max error to classify as inlier
@@ -60,7 +60,7 @@ public:
class CV_EXPORTS NullLog : public ILog
{
public:
virtual void print(const char */*format*/, ...) {}
virtual void print(const char * /*format*/, ...) {}
};
class CV_EXPORTS LogToStdout : public ILog