OpenCV 4.10.0
开源计算机视觉
正在加载...
正在搜索...
无匹配项
名称空间 | 类型定义 | 函数
parsers.hpp 文件参考
#include <utility>
#include <opencv2/gapi/gmat.hpp>
#include <opencv2/gapi/gkernel.hpp>
parsers.hpp 的包含依赖项关系图

名称空间

名称空间 cv
 磁盘上与文件关联的文件存储的“黑匣子”表示。
 
名称空间 cv::gapi
 
名称空间 cv::gapi::nn
 
名称空间 cv::gapi::nn::parsers
 
名称空间 cv::gapi::streaming
 此名称空间包含与流执行模式相关的 G-API 函数、结构和符号。
 

类型定义

using cv::gapi::nn::parsers::GDetections = std::tuple< GArray< Rect >, GArray< int > >
 
using cv::gapi::nn::parsers::GRects = GArray< Rect >
 

函数

 cv::gapi::nn::parsers::G_TYPED_KERNEL (GParseSSD,< GRects(GMat, GOpaque< Size >, float, bool, bool)>, "org.opencv.nn.parsers.parseSSD")
 
 cv::gapi::nn::parsers::G_TYPED_KERNEL (GParseSSDBL,< GDetections(GMat, GOpaque< Size >, float, int)>, "org.opencv.nn.parsers.parseSSD_BL")
 
 cv::gapi::nn::parsers::G_TYPED_KERNEL (GParseYolo,< GDetections(GMat, GOpaque< Size >, float, float, std::vector< float >)>, "org.opencv.nn.parsers.parseYolo")
 
GArray< Rectcv::gapi::parseSSD (const GMat &in, const GOpaque< Size > &inSz, const float confidenceThreshold, const bool alignmentToSquare, const bool filterOutOfBounds)
 解析 SSD 网络的输出。
 
std::tuple< GArray< Rect >, GArray< int > > cv::gapi::parseSSD (const GMat &in, const GOpaque< Size > &inSz, const float confidenceThreshold=0.5f, const int filterLabel=-1)
 解析 SSD 网络的输出。
 
std::tuple< GArray< Rect >, GArray< int > > cv::gapi::parseYolo (const GMat &in, const GOpaque< Size > &inSz, const float confidenceThreshold=0.5f, const float nmsThreshold=0.5f, const std::vector< float > &anchors=nn::parsers::GParseYolo::defaultAnchors())
 解析 Yolo 网络的输出。