* create psenet create psenet with weight from tensorflow * delete some useless code * repalce tab with 4 blanks * fix network bug, rewrite post-processing pse algorithm * update readme * update readme * add RepVGG * fix typo * add hrnetseg w18 w32 w48 * add hrnetseg with ocr w18 w32 w48 * merge hrnet and small, add hrnet_ocr * fix warning * change project name
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 2.6)
|
|
|
|
project(hrnetseg)
|
|
|
|
add_definitions(-std=c++11)
|
|
|
|
option(CUDA_USE_STATIC_CUDA_RUNTIME OFF)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
find_package(CUDA REQUIRED)
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/include)
|
|
# include and link dirs of cuda and tensorrt, you need adapt them if yours are different
|
|
# cuda
|
|
include_directories(/usr/local/cuda/include)
|
|
link_directories(/usr/local/cuda/lib64)
|
|
# tensorrt
|
|
include_directories(/usr/include/x86_64-linux-gnu/)
|
|
link_directories(/usr/lib/x86_64-linux-gnu/)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -Ofast -Wfatal-errors -D_MWAITXINTRIN_H_INCLUDED")
|
|
|
|
find_package(OpenCV)
|
|
include_directories(${OpenCV_INCLUDE_DIRS})
|
|
|
|
add_executable(hrnet ${PROJECT_SOURCE_DIR}/hrnet.cpp)
|
|
target_link_libraries(hrnet nvinfer)
|
|
target_link_libraries(hrnet cudart)
|
|
target_link_libraries(hrnet ${OpenCV_LIBS})
|
|
|
|
|
|
add_executable(hrnet_ocr ${PROJECT_SOURCE_DIR}/hrnet_ocr.cpp)
|
|
target_link_libraries(hrnet_ocr nvinfer)
|
|
target_link_libraries(hrnet_ocr cudart)
|
|
target_link_libraries(hrnet_ocr ${OpenCV_LIBS})
|
|
|
|
|
|
add_definitions(-O2 -pthread)
|
|
|