Зміст курсу
Fundamentals of Image Manipulation with Python
Adding Border to the Image
In OpenCV, the cv2.copyMakeBorder()
function is used to add a border to an image. It creates a new image with a border around the original image, where the size, type, and color of the border can be specified. The function requires several parameters:
src
: The image to be modified.top
,bottom
,left
,right
: The number of pixels to add in each respective direction.borderType
: The type of the border to be added.value
: The color of the border, specified as a tuple of Red, Green, Blue, and optionally Alpha values.
Завдання
- Add a border to the image with specified parameters.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
In OpenCV, the cv2.copyMakeBorder()
function is used to add a border to an image. It creates a new image with a border around the original image, where the size, type, and color of the border can be specified. The function requires several parameters:
src
: The image to be modified.top
,bottom
,left
,right
: The number of pixels to add in each respective direction.borderType
: The type of the border to be added.value
: The color of the border, specified as a tuple of Red, Green, Blue, and optionally Alpha values.
Завдання
- Add a border to the image with specified parameters.
Mark tasks as Completed
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Секція 1. Розділ 8
AVAILABLE TO ULTIMATE ONLY