Recortar imagen usando OpenCV en Python

Manav Narula 22 enero 2022
Recortar imagen usando OpenCV en Python

El módulo opencv proporciona diferentes herramientas y funcionalidades para la Visión por Computador. Disponemos de diferentes funciones para leer y procesar imágenes.

Este tutorial demostrará cómo recortar una imagen usando el módulo opencv en Python.

Las imágenes se almacenan como matrices NumPy. Para recortar imágenes, podemos usar el corte NumPy para cortar los arrays.

Por ejemplo,

import cv2

img = cv2.imread("sample.png")
cropped = img[y : y + h, x : x + w]
cv2.imshow("cropped", cropped)

En el ejemplo anterior, la función imread() lee la imagen. Recortamos la imagen usando un corte NumPy. Finalmente, mostramos la imagen recortada usando la función imshow().

Manav Narula avatar Manav Narula avatar

Manav is a IT Professional who has a lot of experience as a core developer in many live projects. He is an avid learner who enjoys learning new things and sharing his findings whenever possible.

LinkedIn

Artículo relacionado - Python OpenCV