mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* add more examples * change to restore's output image to BGR * use BUILD_SHARED_LIBS * update graph module's cmake * add condition for spdlog package * change cmakelists * update cmakelists * add device_name in each demo * remove duplicate cmake function * use palette to draw segmentation's result * no need to find_package(pplnn) when use MMDeploy's static libs * remove MMDeploy_LIBS' dependency on spdlog * #include <opencv2/imgproc/imgproc.hpp> * change from mmdeploy_core to mmdeploy::core
19 lines
500 B
CMake
19 lines
500 B
CMake
# Copyright (c) OpenMMLab. All rights reserved.
|
|
cmake_minimum_required(VERSION 3.14)
|
|
project(mmdeploy-example)
|
|
|
|
find_package(OpenCV REQUIRED)
|
|
find_package(MMDeploy REQUIRED)
|
|
|
|
function(add_example name)
|
|
add_executable(${name} ${name}.cpp)
|
|
target_link_libraries(${name} ${MMDeploy_LIBS} opencv_imgcodecs
|
|
opencv_imgproc opencv_core)
|
|
endfunction()
|
|
|
|
add_example(image_classification)
|
|
add_example(object_detection)
|
|
add_example(image_restorer)
|
|
add_example(image_segmentation)
|
|
add_example(ocr)
|