Blame view

3rdparty/opencv-4.5.4/modules/gapi/src/api/kernels_nnparsers.cpp 1.51 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  // This file is part of OpenCV project.
  // It is subject to the license terms in the LICENSE file found in the top-level directory
  // of this distribution and at http://opencv.org/license.html.
  //
  // Copyright (C) 2020 Intel Corporation
  
  
  #include "precomp.hpp"
  
  #include <opencv2/gapi/infer/parsers.hpp>
  
  #include <tuple>
  #include <numeric>
  
  namespace cv { namespace gapi {
  
  nn::parsers::GDetections parseSSD(const GMat& in,
                                    const GOpaque<Size>& inSz,
                                    const float confidenceThreshold,
                                    const int filterLabel)
  {
      return nn::parsers::GParseSSDBL::on(in, inSz, confidenceThreshold, filterLabel);
  }
  
  nn::parsers::GRects parseSSD(const GMat& in,
                               const GOpaque<Size>& inSz,
                               const float confidenceThreshold,
                               const bool alignmentToSquare,
                               const bool filterOutOfBounds)
  {
      return nn::parsers::GParseSSD::on(in, inSz, confidenceThreshold, alignmentToSquare, filterOutOfBounds);
  }
  
  nn::parsers::GDetections parseYolo(const GMat& in,
                                     const GOpaque<Size>& inSz,
                                     const float confidenceThreshold,
                                     const float nmsThreshold,
                                     const std::vector<float>& anchors)
  {
      return nn::parsers::GParseYolo::on(in, inSz, confidenceThreshold, nmsThreshold, anchors);
  }
  
  } //namespace gapi
  } //namespace cv