Draw a Line
In OpenCV
, the cv2.line()
function is used to draw a line on an image. The function takes five 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);
- the thickness of the line.
Tehtävä
Swipe to start coding
- Use the correct function to draw a line on
image1
.
Ratkaisu
Mark tasks as Completed
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 1. Luku 10
Kysy tekoälyä
Kysy tekoälyä
Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme
Awesome!
Completion rate improved to 9.09
Draw a Line
In OpenCV
, the cv2.line()
function is used to draw a line on an image. The function takes five 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);
- the thickness of the line.
Tehtävä
Swipe to start coding
- Use the correct function to draw a line on
image1
.
Ratkaisu
Mark tasks as Completed
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 1. Luku 10