Contenido del Curso
Fundamentals of Image Manipulation with Python
Import and Show the Image
In order to read (import) an image in Python with the OpenCV library, you can use the cv2.imread()
function. This function takes one parameter, which is the file path of the image you want to import. The function returns the image as a NumPy array, which can then be used for further processing.
Tarea
- Import the
cv2
library and thepyplot
module ofmatplotlib
withplt
alias. - Read the image
"image1.jpg"
. - Show the image as a plot.
¡Gracias por tus comentarios!
In order to read (import) an image in Python with the OpenCV library, you can use the cv2.imread()
function. This function takes one parameter, which is the file path of the image you want to import. The function returns the image as a NumPy array, which can then be used for further processing.
Tarea
- Import the
cv2
library and thepyplot
module ofmatplotlib
withplt
alias. - Read the image
"image1.jpg"
. - Show the image as a plot.