Зміст курсу
Fundamentals of Image Manipulation with Python
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.
Завдання
- Use the correct function to draw a line on
image1
.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
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.
Завдання
- Use the correct function to draw a line on
image1
.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Секція 1. Розділ 10
AVAILABLE TO ULTIMATE ONLY