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

samples C/C++: fixed compilation problem on Ubuntu

This commit is contained in:
Kirill Kornyakov
2011-07-14 12:50:07 +00:00
parent 14bc6e3e6c
commit 87ad9b1c3e
5 changed files with 12 additions and 5 deletions
+1
View File
@@ -12,6 +12,7 @@
#include <iostream>
#include <vector>
#include <stdio.h>
using namespace std;
void help()
+1
View File
@@ -7,6 +7,7 @@
#include <algorithm>
#include <iostream>
#include <vector>
#include <stdio.h>
using namespace cv;
void help()
+1
View File
@@ -6,6 +6,7 @@
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include <stdio.h>
void help()
{
+2
View File
@@ -13,6 +13,8 @@
#include "opencv2/imgproc/imgproc_c.h"
#include <string>
#include <stdio.h>
void help()
{
printf("\nThis program demonstrates the one way interest point descriptor found in features2d.hpp\n"
+7 -5
View File
@@ -1,14 +1,16 @@
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <vector>
#include <algorithm>
#include <iterator>
#include <stdio.h>
using namespace cv;
using namespace std;
void help()
{
printf( "\nThis code generates an artificial camera and artificial chessboard images,\n"