Use OpenCV

Show Images with imshow

You can use the OpenCV imshow function to visualize an image. This is useful for displaying raw images, or images that you have annotated with OpenCV (i.e. images annotated with bounding boxes).

To use the imshow function, first load an image using the cv.imread function and apply any transformations with OpenCV. Then, you can display the image using the following code:


cv2.imshow(image)

This function will display an image in interactive mode. You should not use this function if you are on a device without a connected screen.

Next steps

OpenCV can be used with the open source supervision Python package.

supervision provides an extensive range of functionalities for working with computer vision models. With supervision, you can:

1. Process and filter detections and segmentation masks from a range of popular models (YOLOv5, Ultralytics YOLOv8, MMDetection, and more).
2. Process and filter classifications.
3. Compute confusion matrices.

And more! To learn about the full range of functionality in supervision, check out the supervision documentation.