|
GMat | absDiff (const GMat &src1, const GMat &src2) |
| 计算两个矩阵元素之间按元素的绝对差。
|
|
GMat | absDiffC (const GMat &src, const GScalar &c) |
| 计算矩阵元素的绝对值。
|
|
GMat | add (const GMat &src1, const GMat &src2, int ddepth=-1) |
| 计算两个矩阵元素之间按元素的和。
|
|
GMat | addC (const GMat &src1, const GScalar &c, int ddepth=-1) |
| 计算矩阵和给定标量的元素级和。
|
|
GMat | addC (const GScalar &c, const GMat &src1, int ddepth=-1) |
| 这是一个提供便利的重载成员函数,它与上述函数的区别在于它接受的参数。
|
|
GMat | addWeighted (const GMat &src1, double alpha, const GMat &src2, double beta, double gamma, int ddepth=-1) |
| 计算两个矩阵的加权总和。
|
|
GMat | BackgroundSubtractor (const GMat &src, const cv::gapi::video::BackgroundSubtractorParams &bsParams) |
| 基于高斯混合或K最近邻的背景/前景分割算法。操作生成前景掩码。
|
|
GMat | BayerGR2RGB (const GMat &src_gr) |
| 将图像从BayerGR颜色空间转换为RGB。该函数将输入图像从BayerGR颜色空间转换为RGB。G、R和B通道值的传统范围是0到255。
|
|
GMat | BGR2Gray (const GMat &src) |
| 将图像从BGR颜色空间转换为灰度。
|
|
GMat | BGR2I420 (const GMat &src) |
| 将图像从BGR颜色空间转换为I420颜色空间。
|
|
GMat | BGR2LUV (const GMat &src) |
| 将图像从BGR颜色空间转换为LUV颜色空间。
|
|
GMat | BGR2RGB (const GMat &src) |
| 将图像从BGR颜色空间转换为RGB颜色空间。
|
|
GMat | BGR2YUV (const GMat &src) |
| 将图像从BGR颜色空间转换为YUV颜色空间。
|
|
GMat | bilateralFilter (const GMat &src, int d, double sigmaColor, double sigmaSpace, int borderType=BORDER_DEFAULT) |
| 对图像应用双边滤波器。
|
|
cv::GRunArg | bind (cv::GRunArgP &out) |
| 将图执行期间可用的输出GRunArgsP包装到可序列化的GRunArgs中。
|
|
cv::GRunArgsP | bind (cv::GRunArgs &out_args) |
| 将反序列化的输出GRunArgs包装到GRunArgsP中,可用于GCompiled。
|
|
GMat | bitwise_and (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src1, const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src2) |
| 计算两个矩阵(src1 & src2)的位运算联合。计算两个相同大小的矩阵的按元素位逻辑联合。
|
|
GMat | bitwise_and (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src1, const GScalar &ppercent7Bhref: "d9/d98/classcv_1_1GScalar.html"}}">src2) |
|
GMat | bitwise_not (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src) |
| 反转数组的每个位。
|
|
GMat | bitwise_or (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src1, const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src2) |
| 计算两个矩阵(src1 | src2)的位运算析取。计算两个相同大小的矩阵的按元素位逻辑析取。
|
|
GMat | bitwise_or (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src1, const GScalar &ppercent7Bhref: "d9/d98/classcv_1_1GScalar.html"}}">src2) |
|
GMat | bitwise_xor (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src1, const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src2) |
| 计算两个矩阵(src1 ^ src2)的位运算逻辑“异或”。计算两个相同大小的矩阵的按元素位逻辑“异或”。
|
|
GMat | bitwise_xor (const GMat &ppercent7Bhref: "df/daa/classcv_1_1GMat.html"}}">src1, const GScalar &ppercent7Bhref: "d9/d98/classcv_1_1GScalar.html"}}">src2) |
|
GMat | blur (const GMat &src, const Size &ksize, const Point &anchor=Point(-1,-1), int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 使用归一化盒子滤波器模糊图像。
|
|
GOpaque< Rect > | boundingRect (const GArray< Point2f > &src) |
|
GOpaque< Rect > | boundingRect (const GArray< Point2i > &src) |
|
GOpaque< Rect > | boundingRect (const GMat &src) |
| 计算点集或灰度图像非零像素的上右边界矩形。
|
|
GMat | boxFilter (const GMat &src, int dtype, const Size &ksize, const Point &anchor=Point(-1,-1), bool normalize=true, int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 使用盒子滤波器模糊图像。
|
|
std::tuple< GArray< GMat >, GScalar > | buildOpticalFlowPyramid (const GMat &img, const Size &winSize, const GScalar &maxLevel, bool withDerivatives=true, int pyrBorder=BORDER_REFLECT_101, int derivBorder=BORDER_CONSTANT, bool tryReuseInputImage=true) |
| 构建可用于传递给calcOpticalFlowPyrLK的光学流金字塔。
|
|
std::tuple< GArray< Point2f >, GArray< uchar >, GArray< float > > | calcOpticalFlowPyrLK (const GArray<GMat> &prevPyr, const GArray<GMat> &nextPyr, const GArray<Point2f> &prevPts, const GArray<Point2f> &predPts, const Size& winSize=Size(21, 21), const GScalar& maxLevel=3, const TermCriteria& criteria=TermCriteria(TermCriteria::COUNT|TermCriteria::EPS, 30, 0.01), int flags=0, double minEigThresh=1e-4) |
|
std::tuple< GArray< Point2f >, GArray< uchar >, GArray< float > > | calcOpticalFlowPyrLK (const GMat&prevImg, const GMat&nextImg, const GArray<Point2f> &prevPts, const GArray<Point2f> &predPts, const Size& winSize=Size(21, 21), const GScalar& maxLevel=3, const TermCriteria& criteria=TermCriteria(TermCriteria::COUNT|TermCriteria::EPS, 30, 0.01), int flags=0, double minEigThresh=1e-4) |
| 使用金字塔迭代 Lucas-Kanade 方法计算稀疏特征集的光流。
|
|
GMat | Canny (const GMat&image, double threshold1, double threshold2, int apertureSize=3, bool L2gradient=false) |
| 使用 Canny 算法在图像中查找边缘。
|
|
std::tuple< GMat, GMat > | cartToPolar (const GMat&x, const GMat&y, bool angleInDegrees=false) |
| 计算二维向量的幅度和角度。
|
|
GMat | cmpEQ (const GMat&src1, const GMat&src2) |
| 对两个矩阵逐元素比较,检查第一个矩阵中的元素是否等于第二个矩阵中的元素。
|
|
GMat | cmpEQ (const GMat&src1, const GScalar&src2) |
|
GMat | cmpGE (const GMat&src1, const GMat&src2) |
| 对两个矩阵逐元素比较,检查第一个矩阵中的元素是否大于或等于第二个矩阵中的元素。
|
|
GMat | cmpGE (const GMat&src1, const GScalar&src2) |
|
GMat | cmpGT (const GMat&src1, const GMat&src2) |
| 对两个矩阵逐元素比较,检查第一个矩阵中的元素是否大于第二个矩阵中的元素。
|
|
GMat | cmpGT (const GMat &src1, const GScalar &src2) |
|
GMat | cmpLE (const GMat &src1, const GMat &src2) |
| 计算两矩阵的逐元素比较,检查第一矩阵的元素是否小于等于第二矩阵的元素。
|
|
GMat | cmpLE (const GMat &src1, const GScalar &src2) |
|
GMat | cmpLT (const GMat &src1, const GMat &src2) |
| 计算两矩阵的逐元素比较,检查第一矩阵的元素是否小于第二矩阵的元素。
|
|
GMat | cmpLT (const GMat &src1, const GScalar &src2) |
|
GMat | cmpNE (const GMat &src1, const GMat &src2) |
| 计算两矩阵的逐元素比较,检查第一矩阵的元素是否不等于第二矩阵的元素。
|
|
GMat | cmpNE (const GMat &src1, const GScalar &src2) |
|
template<typename... Ps> |
cv::GKernelPackage | combine (const cv::GKernelPackage &a, const cv::GKernelPackage &b, Ps &&... rest) |
| 将多个G-API核包合并成一个。
|
|
cv::GKernelPackage | combine (const cv::GKernelPackage &lhs, const cv::GKernelPackage &rhs) |
|
GMat | concatHor (const GMat &src1, const GMat &src2) |
| 对给定的矩阵应用水平连接。
|
|
GMat | concatHor (const std::vector< GMat > &v) |
|
GMat | concatVert (const GMat &src1, const GMat &src2) |
| 对给定的矩阵应用垂直连接。
|
|
GMat | concatVert (const std::vector< GMat > &v) |
|
GMat | convertTo (const GMat &src, int rdepth, double alpha=1, double beta=0) |
| 将矩阵转换为另一种数据深度,可选缩放。
|
|
GFrame | copy (const GFrame &in) |
| 复制输入帧。注意,此副本可能不是实际副本(没有复制实际数据)。使用此函数来维护图合约,例如在图形输入需要直接传递给输出时,如在流模式中。
|
|
GMat | copy (const GMat &in) |
| 复制输入图像。注意,此副本可能不是实际副本(没有复制实际数据)。使用此函数来维护图合约,例如在图形输入需要直接传递给输出时,如在流模式中。
|
|
GOpaque< int > | countNonZero (const GMat &src) |
| 统计非零数组元素。
|
|
GMat | crop (const GMat &src, const Rect &rect) |
| 裁剪二维矩阵。
|
|
template<> |
cv::GComputation | deserialize (const std::vector< char > &bytes) |
| 从字节数组中反序列化 GComputation。
|
|
template<> |
cv::GMetaArgs | deserialize (const std::vector< char > &bytes) |
| 从字节数组中反序列化 GMetaArgs。
|
|
template<> |
cv::GRunArgs | deserialize (const std::vector< char > &bytes) |
| 从字节数组中反序列化 GRunArgs。
|
|
template<> |
std::vector< std::string > | deserialize (const std::vector< char > &bytes) |
| 从字节数组中反序列化 std::vector<std::string>。
|
|
template<typename T , typename... Types> |
std::enable_if< std::is_same< T, GCompileArgs >::value, GCompileArgs >::type | deserialize (const std::vector< char > &bytes) |
| 从字节数组中反序列化模板中指定类型的 GCompileArgs。
|
|
template<typename T , typename AtLeastOneAdapterT , typename... AdapterTypes> |
std::enable_if< std::is_same< T, GRunArgs >::value, GRunArgs >::type | deserialize (const std::vector< char > &bytes) |
| 从字节数组中反序列化包括 RMat 和 MediaFrame 对象(如果有)的 GRunArgs。
|
|
GMat | dilate (const GMat &src, const Mat &kernel, const Point &anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| 使用特定结构元素膨胀图像。
|
|
GMat | dilate3x3 (const GMat &src, int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| 使用 3x3 矩形结构元素膨胀图像。
|
|
GMat | div (const GMat &src1, const GMat &src2, double scale, int ddepth=-1) |
| 对两个矩阵执行逐元素除法。
|
|
GMat | divC (const GMat &src, const GScalar &divisor, double scale, int ddepth=-1) |
| 矩阵除以标量。
|
|
GMat | divRC (const GScalar ÷nt, const GMat &src, double scale, int ddepth=-1) |
| 标量除以矩阵。
|
|
GMat | equalizeHist (const GMat &src) |
|
GMat | erode (const GMat &src, const Mat &kernel, const Point &anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| 使用特定的结构元素腐蚀图像。
|
|
GMat | erode3x3 (const GMat &src, int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| 使用3x3矩形结构元素腐蚀图像。
|
|
GMat | filter2D (const GMat &src, int ddepth, const Mat &kernel, const Point &anchor=Point(-1,-1), const Scalar &delta=Scalar(0), int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 使用核进行图像卷积。
|
|
GArray< GArray< Point > > | findContours (const GMat &src, const RetrievalModes mode, const ContourApproximationModes method) |
|
GArray< GArray< Point > > | findContours (const GMat &src, const RetrievalModes mode, const ContourApproximationModes method, const GOpaque< Point > &offset) |
| 在二值图像中查找轮廓。
|
|
std::tuple< GArray< GArray< Point > >, GArray< Vec4i > > | findContoursH (const GMat &src, const RetrievalModes mode, const ContourApproximationModes method) |
|
std::tuple< GArray< GArray< Point > >, GArray< Vec4i > > | findContoursH (const GMat &src, const RetrievalModes mode, const ContourApproximationModes method, const GOpaque< Point > &offset) |
| 在二值图像中查找轮廓及其层次结构。
|
|
GOpaque< Vec4f > | fitLine2D (const GArray< Point2d > &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
|
GOpaque< Vec4f > | fitLine2D (const GArray< Point2f > &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
|
GOpaque< Vec4f > | fitLine2D (const GArray< Point2i > &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
|
GOpaque< Vec4f > | fitLine2D (const GMat &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
| 将线拟合到2D点集。
|
|
GOpaque< Vec6f > | fitLine3D (const GArray< Point3d > &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
|
GOpaque< Vec6f > | fitLine3D (const GArray< Point3f > &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
|
GOpaque< Vec6f > | fitLine3D (const GArray< Point3i > &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
|
GOpaque< Vec6f > | fitLine3D (const GMat &src, const DistanceTypes distType, const double param=0., const double reps=0., const double aeps=0.) |
| 将线拟合到3D点集。
|
|
GMat | flip (const GMat &src, int flipCode) |
| 沿水平、垂直或同时沿两个轴翻转2D矩阵。
|
|
GMat | gaussianBlur (const GMat &src, const Size &ksize, double sigmaX, double sigmaY=0, int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 使用高斯滤波器模糊图像。
|
|
GArray< Point2f > | goodFeaturesToTrack (const GMat &image, int maxCorners, double qualityLevel, double minDistance, const Mat &mask=Mat(), int blockSize=3, bool useHarrisDetector=false, double k=0.04) |
| 确定图像中的强角点。
|
|
GMat | I4202BGR (const GMat &src) |
| 将图像从 I420 颜色空间转换为 BGR 颜色空间。
|
|
GMat | I4202RGB (const GMat &src) |
| 将图像从 I420 颜色空间转换为 BGR 颜色空间。
|
|
template<typename Net , typename... Args> |
Net::Result | infer (Args &&... args) |
| 根据输入数据计算指定网络(模板参数)的响应。
|
|
template<typename T = Generic> |
cv::GInferListOutputs | infer (const std::string &tag, const cv::GArray< cv::Rect > &rois, const cv::GInferInputs &inputs) |
| 对源图像中的每个区域计算指定网络的响应。
|
|
template<typename T = Generic> |
cv::GInferOutputs | infer (const std::string &tag, const cv::GInferInputs &inputs) |
| 计算通用网络的响应。
|
|
template<typename T = Generic> |
cv::GInferOutputs | infer (const std::string &tag, const cv::GOpaque< cv::Rect > &roi, const cv::GInferInputs &inputs) |
| 计算源图像中指定区域的通用网络的响应。目前仅期望单个输入网络。
|
|
template<typename Net , typename... Args> |
Net::ResultL | infer (cv::GArray< cv::Rect > roi, Args &&... args) |
| 对源图像中的每个区域计算指定网络的响应。
|
|
template<typename Net , typename T > |
Net::Result | infer (cv::GOpaque< cv::Rect > roi, T in) |
| 计算源图像中指定区域指定网络的响应。目前仅期望单个输入网络。
|
|
template<typename T = Generic, typename Input > |
std::enable_if< cv::detail::accepted_infer_types< Input >::value, cv::GInferListOutputs >::type | infer2 (const std::string &tag, const Input &in, const cv::GInferListInputs &inputs) |
| 对源图像中的每个区域计算指定网络的响应,扩展版本。
|
|
template<typename Net , typename T , typename... Args> |
Net::ResultL | infer2 (T image, cv::GArray< Args >... args) |
| 对源图像中的每个区域计算指定网络的响应,扩展版本。
|
|
GMat | inRange (const GMat &src, const GScalar &threshLow, const GScalar &threshUp) |
| 对每个矩阵元素应用范围阈值。
|
|
std::tuple< GMat, GMat > | integral (const GMat &src, int sdepth=-1, int sqdepth=-1) |
| 计算图像的积分。
|
|
void | island (const std::string &name, GProtoInputArgs &&ins, GProtoOutputArgs &&outs) |
| 在一个计算内部定义标签化的岛屿(子图)。
|
|
GMat | KalmanFilter (const GMat &measurement, const GOpaque< bool > &haveMeasurement, const cv::gapi::KalmanParams &kfParams) |
|
GMat | KalmanFilter (const GMat &measurement, const GOpaque< bool > &haveMeasurement, const GMat &control, const cv::gapi::KalmanParams &kfParams) |
| 标准卡尔曼滤波算法 http://en.wikipedia.org/wiki/Kalman_filter。
|
|
template<typename... KK> |
GKernelPackage | kernels () |
| 创建一个包含在变长模板参数中指定的内核和变换的内核包对象。
|
|
template<typename... FF> |
GKernelPackage | kernels (FF &... functors) |
|
std::tuple< GOpaque< double >, GArray< int >, GArray< Point2f > > | kmeans (const GArray< Point2f > &data, const int K, const GArray< int > &bestLabels, const TermCriteria &criteria, const int attempts, const KmeansFlags flags) |
|
std::tuple< GOpaque< double >, GArray< int >, GArray< Point3f > > | kmeans (const GArray< Point3f > &data, const int K, const GArray< int > &bestLabels, const TermCriteria &criteria, const int attempts, const KmeansFlags flags) |
|
std::tuple< GOpaque< double >, GMat, GMat > | kmeans (const GMat &data, const int K, const GMat &bestLabels, const TermCriteria &criteria, const int attempts, const KmeansFlags flags) |
| 找到集群的中心并将输入样本分组在集群周围。
|
|
std::tuple< GOpaque< double >, GMat, GMat > | kmeans (const GMat &data, const int K, const TermCriteria &criteria, const int attempts, const KmeansFlags flags) |
|
GMat | Laplacian (const GMat &src, int ddepth, int ksize=1, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| 计算图像的拉普拉斯。
|
|
GMat | LUT (const GMat &src, const Mat &lut) |
| 对矩阵进行查找表变换。
|
|
GMat | LUV2BGR (const GMat &src) |
| 将图像从 LUV 色彩空间转换为 BGR 色彩空间。
|
|
GMat | mask (const GMat &src, const GMat &mask) |
| 将掩码应用于矩阵。
|
|
GMat | max (const GMat &src1, const GMat &src2) |
| 计算两个矩阵的每个元素的最大值。
|
|
GScalar | mean (const GMat &src) |
| 计算矩阵元素的平均值(均值)。
|
|
GMat | medianBlur (const GMat &src, int ksize) |
| 使用中值滤波器模糊图像。
|
|
GMat | merge3 (const GMat &src1, const GMat &src2, const GMat &src3) |
| 将3个单通道矩阵合并为一个3通道矩阵。
|
|
GMat | merge4 (const GMat &src1, const GMat &src2, const GMat &src3, const GMat &src4) |
| 将4个单通道矩阵合并为一个4通道矩阵。
|
|
GMat | min (const GMat &src1, const GMat &src2) |
| 计算两个矩阵每个元素的最小值。
|
|
GMat | morphologyEx (const GMat &src, const MorphTypes op, const Mat &kernel, const Point &anchor=Point(-1,-1), const int iterations=1, const BorderTypes borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| 执行高级形态学变换。
|
|
GMat | mul (const GMat &src1, const GMat &src2, double scale=1.0, int ddepth=-1) |
| 计算两个矩阵每个元素的缩放乘积。
|
|
GMat | mulC (const GMat &src, const GScalar &multiplier, int ddepth=-1) |
| 这是一个提供便利的重载成员函数,它与上述函数的区别在于它接受的参数。
|
|
GMat | mulC (const GMat &src, double multiplier, int ddepth=-1) |
| 将矩阵与标量相乘。
|
|
GMat | mulC (const GScalar &multiplier, const GMat &src, int ddepth=-1) |
| 这是一个提供便利的重载成员函数,它与上述函数的区别在于它接受的参数。
|
|
template<typename... Args> |
cv::gapi::GNetPackage | networks (Args &&... args) |
|
GMat | normalize (const GMat &src, double alpha, double beta, int norm_type, int ddepth=-1) |
| 正常化数组的范数或值范围。
|
|
GScalar | normInf (const GMat &src) |
| 计算矩阵的绝对无穷范数。
|
|
GScalar | normL1 (const GMat &src) |
| 计算矩阵的绝对L1范数。
|
|
GScalar | normL2 (const GMat &src) |
| 计算矩阵的绝对L2范数。
|
|
GMat | NV12toBGR (const GMat &src_y, const GMat &src_uv) |
| 将图像从NV12 (YUV420p) 颜色空间转换为BGR。该函数将输入图像从NV12颜色空间转换为RGB。Y、U和V通道值的传统范围是0到255。
|
|
GMatP | NV12toBGRp (const GMat &src_y, const GMat &src_uv) |
| 将图像从NV12 (YUV420p) 颜色空间转换为BGR。该函数将输入图像从NV12颜色空间转换为BGR。Y、U和V通道值的传统范围是0到255。
|
|
GMat | NV12toGray (const GMat &src_y, const GMat &src_uv) |
| 将图像从NV12 (YUV420p) 颜色空间转换为灰度。该函数将输入图像从NV12颜色空间转换为灰度。Y、U和V通道值的传统范围是0到255。
|
|
GMat | NV12toRGB (const GMat &src_y, const GMat &src_uv) |
| 将图像从NV12 (YUV420p) 颜色空间转换为RGB。该函数将输入图像从NV12颜色空间转换为RGB。Y、U和V通道值的传统范围是0到255。
|
|
GMatP | NV12toRGBp (const GMat &src_y, const GMat &src_uv) |
| 将图像从NV12 (YUV420p) 颜色空间转换为RGB。该函数将输入图像从NV12颜色空间转换为RGB。Y、U和V通道值的传统范围是0到255。
|
|
bool | operator!= (const GBackend &lhs, const GBackend &rhs) |
|
cv::gapi::GNetPackage & | operator+= (cv::gapi::GNetPackage &lhs, const cv::gapi::GNetPackage &rhs) |
|
GArray< Rect > | parseSSD (const GMat &in, const GOpaque< Size > &inSz, const float confidenceThreshold, const bool alignmentToSquare, const bool filterOutOfBounds) |
| 解析SSD网络输出。
|
|
std::tuple> Rect >', | parseSSD (const GMat &in, const GOpaque< Size > &inSz, const float confidenceThreshold=0.5f, const int filterLabel=-1) |
| 解析SSD网络输出。
|
|
std::tuple> Rect >', | 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网络输出。
|
|
GMat | phase (const GMat &x, const GMat &y, bool angleInDegrees=false) |
| 计算二维向量的旋转角度。
|
|
std::tuple< GMat, GMat > | polarToCart (const GMat &mage, const GMat &angle, bool angleInDegrees=false) |
| 根据二维向量的幅度和角度计算x和y坐标。
|
|
GMat | remap (const GMat &src, const Mat &map1, const Mat &map2, int interpolation, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| 对图像应用通用几何变换。
|
|
GMat | resize (const GMat &src, const Size &dsize, double fx=0, double fy=0, int interpolation=INTER_LINEAR) |
| 调整图像大小。
|
|
GMatP | resizeP (const GMatP &src, const Size &dsize, int interpolation=cv::INTER_LINEAR) |
| 调整平面图像的大小。
|
|
GMat | RGB2Gray (const GMat &src) |
| 将图像从RGB颜色空间转换为灰度。
|
|
GMat | RGB2Gray (const GMat &src, float rY, float gY, float bY) |
|
GMat | RGB2HSV (const GMat &src) |
| 将图像从RGB颜色空间转换为HSV。函数将输入图像从RGB颜色空间转换为HSV。R、G和B通道值的传统范围是0到255。
|
|
GMat | RGB2I420 (const GMat &src) |
| 将图像从 RGB 颜色空间转换为 I420 颜色空间。
|
|
GMat | RGB2Lab (const GMat &src) |
| 将图像从 RGB 颜色空间转换为 Lab 颜色空间。
|
|
GMat | RGB2YUV (const GMat &src) |
| 将图像从 RGB 颜色空间转换为 YUV 颜色空间。
|
|
GMat | RGB2YUV422 (const GMat &src) |
| 将图像从 RGB 颜色空间转换为 YUV422。该函数将输入图像从 RGB 颜色空间转换为 YUV422。RGB、G 和 B 通道值的传统范围是 0 到 255。
|
|
GMat | select (const GMat &src1, const GMat &src2, const mask) |
| 通过给定的掩码从输入矩阵的第一个或第二个中选择值。如果掩码矩阵中对应的值为 255,则将输出矩阵设置为第一个输入矩阵的值,或者如果掩码矩阵设置为 0,则设置为第二个输入矩阵的值。
|
|
GMat | sepFilter (const GMat &src, int ddepth, const Mat &kernelX, const Mat &kernelY, const Point &anchor, const Scalar &delta, int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 将分离线性滤波器应用于矩阵(图像)。
|
|
std::vector< char > | serialize (const cv::GCompileArgs &ca) |
|
std::vector< char > | serialize (const cv::GComputation &c) |
| 将 GComputation 表示的图序列化为一个字节数组。
|
|
std::vector< char > | serialize (const cv::GMetaArgs &ma) |
|
std::vector< char > | serialize (const cv::GRunArgs &ra) |
|
std::vector< char > | serialize (const std::vector< std::string > &vs) |
|
GMat | Sobel (const GMat &src, int ddepth, int dx, int dy, int ksize=3, double scale=1, double delta=0, int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 使用扩展 Sobel算符计算第一、第二、第三或混合图像导数。
|
|
std::tuple< GMat, GMat > | SobelXY (const GMat &src, int ddepth, int order, int ksize=3, double scale=1, double delta=0, int borderType=BORDER_DEFAULT, const Scalar &borderValue=Scalar(0)) |
| 使用扩展 Sobel算符计算第一、第二、第三或混合图像导数。
|
|
std::tuplelangle GMat, GMat, GMat &rangle | split3 (const GMat &src) |
| 将3通道矩阵分割成3个单通道矩阵。
|
|
std::tuplelangle GMat, GMat, GMat, GMat &rangle | split4 (const GMat &src) |
| 将4通道矩阵分割成4个单通道矩阵。
|
|
GMat | sqrt (const GMat &src) |
| 计算数组元素的平方根。
|
|
GMat | stereo (const GMat &left, const GMat &right, const StereoOutputFormat of=StereoOutputFormat::DEPTH_FLOAT32) |
| 计算指定立体对的视差/深度图。函数根据传入的 StereoOutputFormat 参数计算视差或深度图。
|
|
GMat | sub (const GMat &src1, const GMat &src2, int ddepth=-1) |
| 计算两个矩阵之间的逐元素差异。
|
|
GMat | subC (const GMat &src, const GScalar &c, int ddepth=-1) |
| 计算矩阵与给定标量的逐元素差异。
|
|
GMat | subRC (const GScalar&c, const GMat&src, int ddepth=-1) |
| 计算给定标量与矩阵之间的逐元素差异。
|
|
GScalar | sum (const GMat &src) |
| 计算矩阵中所有元素的总和。
|
|
std::tuplelangle GMat, GScalar &rangle | threshold (const GMat &src, const GScalar &maxval, int type) |
|
GMat | threshold (const GMat &src, const GScalar &thresh, const GScalar &maxval, int type) |
| 对每个矩阵元素应用固定阈值的阈值。
|
|
GMat | transpose (const GMat &src) |
| 转置矩阵。
|
|
GMat | warpAffine (const GMat &src, const Mat &M, const Size &dsize, int flags=cv::INTER_LINEAR, int borderMode=cv::BORDER_CONSTANT, const Scalar &(borderValue=Scalar())) |
| 对一个图像应用仿射变换。
|
|
GMat | warpPerspective (const GMat &src, const Mat &M, const Size &dsize, int flags=cv::INTER_LINEAR, int borderMode=cv::BORDER_CONSTANT, const Scalar &(borderValue=Scalar())) |
| 对一个图像应用透视变换。
|
|
GMat | YUV2BGR (const GMat &src) |
| 将图像从 YUV 颜色空间转换为 BGR 颜色空间。
|
|
GMat | YUV2RGB (const GMat &src) |
| 将图像从 YUV 颜色空间转换为 RGB。该函数将输入图像从 YUV 颜色空间转换为 RGB。Y,U 和 V 通道值的传统范围为 0 到 255。
|
|