File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
33
33
if (${Caffe_FOUND} )
34
34
include_directories (${Caffe_INCLUDE_DIR} )
35
35
endif ()
36
- set (the_description "CNN for 3D object recognition and pose estimation including a completed Sphere View on 3D objects" )
37
- ocv_define_module (cnn_3dobj opencv_core opencv_imgproc opencv_viz opencv_highgui OPTIONAL WRAP python )
36
+ set (the_description "CNN for 3D object recognition and pose estimation including a completed Sphere View on 3D objects" )
37
+ ocv_define_module (cnn_3dobj opencv_core opencv_imgproc opencv_viz opencv_highgui OPTIONAL WRAP python )
38
38
39
39
if (${Caffe_FOUND} )
40
40
target_link_libraries (opencv_cnn_3dobj ${Caffe_LIBS} ${Glog_LIBS} ${Protobuf_LIBS} )
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ if(NOT HAVE_QT5)
3
3
return ()
4
4
endif ()
5
5
6
+ set (the_description "Debug visualization framework" )
7
+ ocv_define_module (cvv opencv_core opencv_imgproc opencv_features2d ${CVV_LIBRARIES} WRAP python )
8
+
6
9
# we need C++11 and want warnings:
7
10
if (MSVC )
8
11
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Qstd=c++11 /W4" )
@@ -20,6 +23,3 @@ foreach(dt5_dep Core Gui Widgets)
20
23
include_directories (${Qt5${dt5_dep}_INCLUDE_DIRS} )
21
24
list (APPEND CVV_LIBRARIES ${Qt5${dt5_dep}_LIBRARIES} )
22
25
endforeach ()
23
-
24
- set (the_description "Debug visualization framework" )
25
- ocv_define_module (cvv opencv_core opencv_imgproc opencv_features2d ${CVV_LIBRARIES} WRAP python )
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ else()
27
27
message (STATUS "HDF5: NO" )
28
28
endif ()
29
29
30
+ set (the_description "Hierarchical Data Format I/O" )
31
+ ocv_define_module (hdf opencv_core WRAP python )
32
+
30
33
if (HDF5_FOUND )
31
34
include_directories (${HDF5_INCLUDE_DIRS} )
32
35
endif ()
33
36
34
- set (the_description "Hierarchical Data Format I/O" )
35
- ocv_define_module (hdf opencv_core WRAP python )
36
-
37
37
if (HDF5_FOUND )
38
38
target_link_libraries (opencv_hdf ${HDF5_LIBRARIES} )
39
39
endif ()
Original file line number Diff line number Diff line change
1
+ set (the_description "Text Detection and Recognition" )
2
+ ocv_define_module (text opencv_ml opencv_highgui opencv_imgproc opencv_core opencv_features2d WRAP python )
3
+
1
4
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR} )
2
5
3
6
find_package (Tesseract )
@@ -17,9 +20,6 @@ if(${Tesseract_FOUND})
17
20
include_directories (${Tesseract_INCLUDE_DIR} )
18
21
endif ()
19
22
20
- set (the_description "Text Detection and Recognition" )
21
- ocv_define_module (text opencv_ml opencv_highgui opencv_imgproc opencv_core opencv_features2d WRAP python )
22
-
23
23
if (${Tesseract_FOUND} )
24
24
target_link_libraries (opencv_text ${Tesseract_LIBS} )
25
25
endif ()
You can’t perform that action at this time.
0 commit comments