projects
/
platform
/
upstream
/
opencv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01c1003
)
Fixing a missing header compilation problem
author
Victor Erukhimov
<no@email>
Fri, 26 Nov 2010 19:11:42 +0000
(19:11 +0000)
committer
Victor Erukhimov
<no@email>
Fri, 26 Nov 2010 19:11:42 +0000
(19:11 +0000)
samples/c/facedetect.cpp
patch
|
blob
|
history
diff --git
a/samples/c/facedetect.cpp
b/samples/c/facedetect.cpp
index b5dad77be02bf41960c4f97d5a0ee92309bb6279..5b8c24adfae3bdb58f52a0741b1d8d6a1f4637a4 100644
(file)
--- a/
samples/c/facedetect.cpp
+++ b/
samples/c/facedetect.cpp
@@
-3,6
+3,7
@@
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
+#include <stdio.h>
using namespace std;
using namespace cv;
@@
-204,4
+205,4
@@
void detectAndDraw( Mat& img,
}
}
cv::imshow( "result", img );
-}
\ No newline at end of file
+}