Repository for OpenCV's extra modules
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
set(the_description "Text Detection and Recognition")
|
|
|
|
ocv_define_module(text opencv_ml opencv_imgproc opencv_core opencv_features2d OPTIONAL opencv_highgui WRAP python java)
|
|
|
|
|
|
|
|
if(NOT CMAKE_CROSSCOMPILING OR OPENCV_FIND_TESSERACT)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
find_package(Tesseract QUIET)
|
|
|
|
if(Tesseract_FOUND)
|
|
|
|
message(STATUS "Tesseract: YES")
|
|
|
|
set(HAVE_TESSERACT 1)
|
|
|
|
ocv_include_directories(${Tesseract_INCLUDE_DIR})
|
|
|
|
ocv_target_link_libraries(${the_module} ${Tesseract_LIBRARIES})
|
|
|
|
else()
|
|
|
|
message(STATUS "Tesseract: NO")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/text_config.hpp.in
|
|
|
|
${CMAKE_BINARY_DIR}/text_config.hpp @ONLY)
|
|
|
|
|
|
|
|
ocv_include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
|
|
ocv_add_testdata(samples/ contrib/text
|
|
|
|
FILES_MATCHING PATTERN "*.xml" PATTERN "*.xml.gz" REGEX "scenetext[0-9]+.jpg"
|
|
|
|
)
|