|
| template<typename Net , typename... Args> |
| Net::Result | cv::gapi::infer (Args &&... args) |
| | 計算給定輸入資料的指定網路(模板引數)的響應。
|
| |
| template<typename T = Generic> |
| cv::GInferListOutputs | cv::gapi::infer (const std::string &tag, const cv::GArray< cv::Rect > &rois, const cv::GInferInputs &inputs) |
| | 計算源影像中每個區域的指定網路的響應。
|
| |
| template<typename T = Generic> |
| cv::GInferOutputs | cv::gapi::infer (const std::string &tag, const cv::GInferInputs &inputs) |
| | 計算通用網路的響應。
|
| |
| template<typename T = Generic> |
| cv::GInferOutputs | cv::gapi::infer (const std::string &tag, const cv::GOpaque< cv::Rect > &roi, const cv::GInferInputs &inputs) |
| | 計算源影像中指定區域的通用網路的響應。目前只期望單輸入網路。
|
| |
| template<typename Net , typename... Args> |
| Net::ResultL | cv::gapi::infer (cv::GArray< cv::Rect > roi, Args &&... args) |
| | 計算源影像中每個區域的指定網路(模板引數)的響應。
|
| |
| template<typename Net , typename T > |
| Net::Result | cv::gapi::infer (cv::GOpaque< cv::Rect > roi, T in) |
| | 計算源影像中指定區域的指定網路(模板引數)的響應。目前只期望單輸入網路。
|
| |
| template<typename T = Generic, typename Input > |
| std::enable_if< cv::detail::accepted_infer_types< Input >::value, cv::GInferListOutputs >::type | cv::gapi::infer2 (const std::string &tag, const Input &in, const cv::GInferListInputs &inputs) |
| | 計算源影像中每個區域的指定網路的響應,擴充套件版本。
|
| |
| template<typename Net , typename T , typename... Args> |
| Net::ResultL | cv::gapi::infer2 (T image, cv::GArray< Args >... args) |
| | 計算源影像中每個區域的指定網路(模板引數)的響應,擴充套件版本。
|
| |
| template<typename InferType > |
| InferROITraits< InferType >::outType | cv::detail::inferGenericROI (const std::string &tag, const typename InferROITraits< InferType >::inType &in, const cv::GInferInputs &inputs) |
| |
| template<typename InferT > |
| std::shared_ptr< cv::GCall > | cv::detail::makeCall (const std::string &tag, std::vector< cv::GArg > &&args, std::vector< std::string > &&names, cv::GKinds &&kinds) |
| |
| template<typename... Args> |
| cv::gapi::GNetPackage | cv::gapi::networks (Args &&... args) |
| |
| cv::gapi::GNetPackage & | cv::gapi::operator+= (cv::gapi::GNetPackage &lhs, const cv::gapi::GNetPackage &rhs) |
| |
| template<typename T > |
| gapi::GNetParam | cv::detail::strip (T &&t) |
| |
| void | cv::detail::unpackBlobs (const cv::GInferInputs::Map &blobs, std::vector< cv::GArg > &args, std::vector< std::string > &names, cv::GKinds &kinds) |
| |