repo.or.cz
/
photoboothMX.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
agregue las cabeceras de la libreria OpenCV
[photoboothMX.git]
/
main.cpp
blob
4532694f4447fe6f916fd9ea6cb3b4ef3648b560
1
#include <QtGui/QApplication>
2
#include
"mainwindow.h"
3
#include <opencv/cv.h>
4
#include <opencv/highgui.h>
5
6
7
int
main
(
int
argc
,
char
*
argv
[])
8
{
9
QApplication
a
(
argc
,
argv
);
10
MainWindow w
;
11
w
.
show
();
12
13
return
a
.
exec
();
14
}