|
template<typename Net , typename T > |
Net::Result | cv::gapi::infer (cv::GOpaque< cv::Rect > roi, T in) |
| Calculates response for the specified network (template parameter) for the specified region in the source image. Currently expects a single-input network only. More...
|
|
template<typename Net , typename... Args> |
Net::ResultL | cv::gapi::infer (cv::GArray< cv::Rect > roi, Args &&... args) |
| Calculates responses for the specified network (template parameter) for every region in the source image. More...
|
|
template<typename Net , typename... Args> |
Net::Result | cv::gapi::infer (Args &&... args) |
| Calculates response for the specified network (template parameter) given the input data. More...
|
|
template<typename T = Generic> |
cv::GInferOutputs | cv::gapi::infer (const std::string &tag, const cv::GInferInputs &inputs) |
| Calculates response for generic network. More...
|
|
template<typename T = Generic> |
cv::GInferOutputs | cv::gapi::infer (const std::string &tag, const cv::GOpaque< cv::Rect > &roi, const cv::GInferInputs &inputs) |
| Calculates response for the generic network for the specified region in the source image. Currently expects a single-input network only. More...
|
|
template<typename T = Generic> |
cv::GInferListOutputs | cv::gapi::infer (const std::string &tag, const cv::GArray< cv::Rect > &rois, const cv::GInferInputs &inputs) |
| Calculates responses for the specified network for every region in the source image. More...
|
|
template<typename Net , typename T , typename... Args> |
Net::ResultL | cv::gapi::infer2 (T image, cv::GArray< Args >... args) |
| Calculates responses for the specified network (template parameter) for every region in the source image, extended version. More...
|
|
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) |
| Calculates responses for the specified network for every region in the source image, extended version. More...
|
|
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) |
|