-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
新的 ort 多态部署库,以支持 CUDA、TensorRT 和 OpenVINO 的 Provider 选择
- Loading branch information
1 parent
1156bf3
commit aaed544
Showing
37 changed files
with
474 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/** | ||
* @file pretreat.h | ||
* @author RoboMaster Vision Community | ||
* @brief Header of the image pretreating module | ||
* @file pretreat.hpp | ||
* @author zhaoxi ([email protected]) | ||
* @brief 图像预处理模块 | ||
* @version 1.0 | ||
* @date 2022-11-23 | ||
* @date 2024-06-05 | ||
* | ||
* @copyright Copyright 2023 (c), RoboMaster Vision Community | ||
* @copyright Copyright 2024 (c), zhaoxi | ||
* | ||
*/ | ||
|
||
|
@@ -16,7 +16,15 @@ | |
namespace rm | ||
{ | ||
|
||
//! @addtogroup imgproc | ||
//! @addtogroup core | ||
//! @{ | ||
//! @defgroup core_pretreat 图像预处理模块 | ||
//! @{ | ||
//! @brief 提供了二值化等图像预处理功能 | ||
//! @} core_pretreat | ||
//! @} core | ||
|
||
//! @addtogroup core_pretreat | ||
//! @{ | ||
|
||
//! 像素通道枚举 | ||
|
@@ -52,6 +60,6 @@ cv::Mat binary(cv::Mat src, PixChannel ch1, PixChannel ch2, uint8_t threshold); | |
*/ | ||
cv::Mat binary(cv::Mat src, uint8_t threshold); | ||
|
||
//! @} imgproc | ||
//! @} core_pretreat | ||
|
||
} // namespace rm |
14 changes: 7 additions & 7 deletions
14
modules/imgproc/perf/perf_pretreat.cpp → modules/core/perf/perf_pretreat.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
/** | ||
* @file perf_pretreat.cpp | ||
* @author RoboMaster Vision Community | ||
* @brief | ||
* @author zhaoxi ([email protected]) | ||
* @brief | ||
* @version 1.0 | ||
* @date 2022-11-24 | ||
* | ||
* @copyright Copyright 2023 (c), RoboMaster Vision Community | ||
* | ||
* @date 2024-06-05 | ||
* | ||
* @copyright Copyright 2024 (c), zhaoxi | ||
* | ||
*/ | ||
|
||
#include <benchmark/benchmark.h> | ||
|
||
#include <opencv2/imgproc.hpp> | ||
|
||
#include "rmvl/imgproc/pretreat.h" | ||
#include "rmvl/core/pretreat.hpp" | ||
|
||
namespace rm_test | ||
{ | ||
|
Oops, something went wrong.