Model Pipeline - Drawing on images (lines, rectangles, circles, text)
This pipeline shows how an image is taken and simple shapes and text are drawn on it. This helps in highlighting parts of the image or adding information visually.
Jump into concepts and practice - no test required
This pipeline shows how an image is taken and simple shapes and text are drawn on it. This helps in highlighting parts of the image or adding information visually.
N/A
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | N/A | N/A | No training involved; this is an image drawing pipeline |
cv2.putText controls the thickness of the text?cv2.line(img, (10, 10), (100, 10), (0, 0, 255), 2)
cv2.circle(img, (50, 50), -10, (255, 0, 0), 3)
img = cv2.imread('image.jpg')
start = (30, 30)
end = (150, 150)
# Options below