OpenCV  4.5.2
Open Source Computer Vision
Public Member Functions | Public Attributes | List of all members
cv::gapi::wip::draw::Line Struct Reference

This structure represents a line to draw. More...

#include <opencv2/gapi/render/render_types.hpp>

Public Member Functions

 Line ()=default
 
 Line (const cv::Point &pt1_, const cv::Point &pt2_, const cv::Scalar &color_, int thick_=1, int lt_=8, int shift_=0)
 Line constructor. More...
 

Public Attributes

cv::Scalar color
 The line color. More...
 
int lt
 The Type of the line. See LineTypes. More...
 
cv::Point pt1
 The first point of the line segment. More...
 
cv::Point pt2
 The second point of the line segment. More...
 
int shift
 The number of fractional bits in the point coordinates. More...
 
int thick
 The thickness of line. More...
 

Detailed Description

This structure represents a line to draw.

Parameters match cv::line().

Constructor & Destructor Documentation

◆ Line() [1/2]

cv::gapi::wip::draw::Line::Line ( const cv::Point pt1_,
const cv::Point pt2_,
const cv::Scalar color_,
int  thick_ = 1,
int  lt_ = 8,
int  shift_ = 0 
)
inline

Line constructor.

Parameters
pt1_The first point of the line segment
pt2_The second point of the line segment
color_The line color
thick_The thickness of line
lt_The Type of the line. See LineTypes
shift_The number of fractional bits in the point coordinates

◆ Line() [2/2]

cv::gapi::wip::draw::Line::Line ( )
default

Member Data Documentation

◆ color

cv::Scalar cv::gapi::wip::draw::Line::color

The line color.

◆ lt

int cv::gapi::wip::draw::Line::lt

The Type of the line. See LineTypes.

◆ pt1

cv::Point cv::gapi::wip::draw::Line::pt1

The first point of the line segment.

◆ pt2

cv::Point cv::gapi::wip::draw::Line::pt2

The second point of the line segment.

◆ shift

int cv::gapi::wip::draw::Line::shift

The number of fractional bits in the point coordinates.

◆ thick

int cv::gapi::wip::draw::Line::thick

The thickness of line.


The documentation for this struct was generated from the following file: