OpenCV  4.5.1
Open Source Computer Vision
Namespaces | Typedefs | Functions
parsers.hpp File Reference
#include <utility>
#include <opencv2/gapi/gmat.hpp>
#include <opencv2/gapi/gkernel.hpp>

Namespaces

 cv
 "black box" representation of the file storage associated with a file on disk.
 
 cv::gapi
 
 cv::gapi::nn
 
 cv::gapi::nn::parsers
 
 cv::gapi::streaming
 

Typedefs

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

Functions

 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 (GParseSSD,< GRects(GMat, GOpaque< Size >, float, bool, bool)>, "org.opencv.nn.parsers.parseSSD")
 
 cv::gapi::nn::parsers::G_TYPED_KERNEL (GParseYolo,< GDetections(GMat, GOpaque< Size >, float, float, std::vector< float >)>, "org.opencv.nn.parsers.parseYolo")
 
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)
 Parses output of SSD network. More...
 
GArray< Rect > cv::gapi::parseSSD (const GMat &in, const GOpaque< Size > &inSz, const float confidenceThreshold=0.5f, const bool alignmentToSquare=false, const bool filterOutOfBounds=false)
 
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())
 Parses output of Yolo network. More...