Skip to content

Instantly share code, notes, and snippets.

@ilyakava
Created April 12, 2015 19:02
Show Gist options
  • Save ilyakava/8eb6cae6341ed94ccd0e to your computer and use it in GitHub Desktop.
Save ilyakava/8eb6cae6341ed94ccd0e to your computer and use it in GitHub Desktop.
#include "opencv2/core/core_c.h"
#include "opencv2/core/core.hpp"
#include "opencv2/flann/miniflann.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/video/video.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/ml/ml.hpp"
#include "opencv2/highgui/highgui_c.h"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/contrib/contrib.hpp"
using namespace cv;
int main()
{
Mat img = imread("/home/ilyakavalerov/Pictures/python.jpg",CV_LOAD_IMAGE_COLOR);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment