“Cargar IMG CV2” Código de respuesta

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')
Smoggy Scarab

Cargar IMG CV2


img = cv2.imread('img.jpg')
Smoggy Scarab

Respuestas similares a “Cargar IMG CV2”

Preguntas similares a “Cargar IMG CV2”

Más respuestas relacionadas con “Cargar IMG CV2” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código