zoukankan      html  css  js  c++  java
  • opencv arrowedLine

    opencv arrowedLine

    /** @brief Draws a arrow segment pointing from the first point to the second one.
    
    The function arrowedLine draws an arrow between pt1 and pt2 points in the image. See also cv::line.
    
    @param img Image.
    @param pt1 The point the arrow starts from.
    @param pt2 The point the arrow points to.
    @param color Line color.
    @param thickness Line thickness.
    @param line_type Type of the line, see cv::LineTypes
    @param shift Number of fractional bits in the point coordinates.
    @param tipLength The length of the arrow tip in relation to the arrow length
     */
    CV_EXPORTS_W void arrowedLine(InputOutputArray img, Point pt1, Point pt2, const Scalar& color,
                         int thickness=1, int line_type=8, int shift=0, double tipLength=0.1);

    ################################

  • 相关阅读:
    数据库相关
    linux相关
    类相关
    异常处理
    一些类的概念
    安装插件
    接口开发
    redis相关
    大数据-概览
    大数据-浅谈OLTP与OLAP
  • 原文地址:https://www.cnblogs.com/herd/p/15406767.html
Copyright © 2011-2022 走看看