Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import cv2
- import numpy as np
- # Создаем пустое изображение
- image = np.zeros((300, 500, 3), dtype=np.uint8)
- # Определяем координаты прямоугольника
- top_left = (50, 100)
- bottom_right = (200, 200)
- # Рисуем прямоугольник с зелёным контуром (цвет: (0, 255, 0), толщина: 3)
- cv2.rectangle(image, top_left, bottom_right, (0, 255, 0), thickness=3)
- # Добавляем надпись справа от прямоугольника
- text = "Rectangle"
- text_position = (bottom_right[0] + 10, top_left[1] + 30) # Позиция справа от фигуры
- # Наносим текст жёлтого цвета (цвет: (0, 255, 255), масштаб: 0.8, толщина: 1)
- cv2.putText(image, text, text_position, cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 255, 255), thickness=1)
- # Отображаем изображение
- cv2.imshow("Image with Rectangle and Text", image)
- cv2.waitKey(0)
- cv2.destroyAllWindows()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement