Created
April 12, 2015 19:02
-
-
Save ilyakava/8eb6cae6341ed94ccd0e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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