Course Content
Image Processing Project
Draw a Line
In OpenCV
, the cv2.line()
function is used to draw a line on an image. The function takes in six required parameters: the image to be modified, the starting point of the line (specified as a tuple of x and y coordinates), the ending point of the line (specified as a tuple of x and y coordinates), the color of the line (specified as a tuple of Red, Green, Blue values), and the thickness of the line.
TaskCompleted
- Define the ending coordinates for the line.
- Use the
line()
function to draw a line onimage1
.
Everything was clear?
Section 1. Chapter 10