Fixing missing header compilation problems

This commit is contained in:
Victor Erukhimov 2010-11-26 19:22:39 +00:00
parent 1fb6e7d1ce
commit db5157513e
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include <stdio.h>
IplImage* inpaint_mask = 0;
IplImage* img0 = 0, *img = 0, *inpainted = 0;
CvPoint prev_pt = {-1,-1};

View File

@ -1,6 +1,8 @@
#include "opencv2/core/core_c.h"
#include "opencv2/ml/ml.hpp"
#include <stdio.h>
/*
The sample demonstrates how to train Random Trees classifier
(or Boosting classifier, or MLP - see main()) using the provided dataset.