OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2.imwrite()
method is used to save an image to any storage device. This will save the image according to the specified format in current working directory.
Syntax: cv2.imwrite(filename, image)
Parameters:
filename: A string representing the file name. The filename must include image format like .jpg, .png, etc.
image: It is the image that is to be saved.
Return Value: It returns true if image is saved successfully.
Example #1:
import cv2
import os
image_path = r 'C:\Users\Rajnish\Desktop\GeeksforGeeks\geeks.png'
directory = r 'C:\Users\Rajnish\Desktop\GeeksforGeeks'
img = cv2.imread(image_path)
os.chdir(directory)
print ( "Before saving image:" )
print (os.listdir(directory))
filename = 'savedImage.jpg'
cv2.imwrite(filename, img)
print ( "After saving image:" )
print (os.listdir(directory))
print ( 'Successfully saved' )
|
Output:
Before saving image:
['geeks.png']
After saving image:
['geeks.png', 'savedImage.jpg']
Successfully saved
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
04 Jan, 2023
Like Article
Save Article