Recuerda que en las ciencias un error casi siempere puede tener diferentes resoluciones, no obstante nosotros enseñaremos lo más óptimo y eficiente.
Ejemplo 1: mostrar imagen opencv python
import cv2
img = cv2.imread('/path_to_image/opencv-logo.png')
cv2.imshow('image',img)
cv2.waitKey(0)
cv2.destroyAllWindows()#touse it in a loop
k = cv2.waitKey(0)if k ==27: # wait for ESC key to exit
cv2.destroyAllWindows()
elif k ==ord('s'): # wait for's' key to save and exit
cv2.imwrite('messigray.png',img)
cv2.destroyAllWindows()
Ejemplo 2: cv show image python
cv2.imshow('image',img)
cv2.waitKey(0)
Ejemplo 3: imagen de carga cv2
import numpy as np
import cv2
import matplotlib.pyplot as plt
%matplotlib inline # if you are running this code in jupyter notebook
img = cv2.imread('/path_to_image/opencv-logo.png',0) # reads image 'opencv-logo.png' as grayscale
plt.imshow(img, cmap='gray')
Comentarios y puntuaciones
Te invitamos a añadir valor a nuestro contenido aportando tu veteranía en las crónicas.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)