Skip to content

Commit 580f953

Browse files
committed
CVUI bliblioteca para crear GUI
La librería cvui.h nos permite crear GUIs usando solamente las operaciones nativas de dibujo de OpenCV.
1 parent 01a3dbf commit 580f953

File tree

3 files changed

+2051
-0
lines changed

3 files changed

+2051
-0
lines changed

opencv-cvui/CMakeLists.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
cmake_minimum_required(VERSION 3.4)
2+
3+
project( Tutorial_CVUI )
4+
5+
find_package( OpenCV 3.0.0 REQUIRED )
6+
7+
file(COPY ../data/lena.jpg DESTINATION imagen)
8+
9+
add_executable( ${PROJECT_NAME} cvui_test.cpp cvui.h)
10+
11+
target_link_libraries( ${PROJECT_NAME} ${OpenCV_LIBS} )

0 commit comments

Comments
 (0)