nanodet_openvino icon indicating copy to clipboard operation
nanodet_openvino copied to clipboard

手把手教你OpenVINO下部署NanoDet模型,intel i7-7700HQ CPU实测6ms一帧

Results 4 nanodet_openvino issues
Sort by recently updated
recently updated
newest added

Windows下面CMakeLists.txt(初学CMake): ``` cmake_minimum_required(VERSION 3.5) project(nanodet) set(CMAKE_CXX_STANDARD 11) find_package(OpenCV REQUIRED) find_package(InferenceEngine) find_package(ngraph REQUIRED) add_library(detector SHARED ${CMAKE_CURRENT_SOURCE_DIR}/detector.cpp) target_include_directories( detector PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include PUBLIC ${OpenCV_INCLUDE_DIRS} PUBLIC ${InferenceEngine_INCLUDE_DIRS} ) target_link_libraries( detector ${OpenCV_LIBS} ${InferenceEngine_LIBRARIES} ${ngraph_LIBRARIES} )...

enhancement

Can anyone provide a Python version of implementation?

您好,请问有测试过在windows下用openvino加速nanodet时cpu下的推理时间吗?我看您之前是在ubuntu下做的,cpu下6ms左右,不知道准确性如何?

How about inference time and platform?