OpenCV  4.9.0-dev
Open Source Computer Vision
Loading...
Searching...
No Matches
Namespaces | Typedefs | Functions
parsers.hpp File Reference
#include <utility>
#include <opencv2/gapi/gmat.hpp>
#include <opencv2/gapi/gkernel.hpp>
Include dependency graph for parsers.hpp:

Namespaces

namespace  cv
 "black box" representation of the file storage associated with a file on disk.
 
namespace  cv::gapi
 
namespace  cv::gapi::nn
 
namespace  cv::gapi::nn::parsers
 
namespace  cv::gapi::streaming
 This namespace contains G-API functions, structures, and symbols related to the Streaming execution mode.
 

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 (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)
 Parses output of SSD network.
 
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.
 
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.