Answers for "picture read text using python geeksforgeeks"

0

getting image from path python

from PIL import Image
import glob
image_list = []
for filename in glob.glob('yourpath/*.gif'): #assuming gif
    im=Image.open(filename)
    image_list.append(im)
Posted by: Guest on May-15-2020
0

how to write a script to display an image in python

>>> from PIL import Image                                                                                
>>> img = Image.open('test.png')
>>> img.show()
Posted by: Guest on January-12-2020

Code answers related to "picture read text using python geeksforgeeks"

Python Answers by Framework

Browse Popular Code Answers by Language