Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

rezing images of entire dataset in python

f = r'C://Users/xx/Desktop/testimages'
for file in os.listdir(f):
    f_img = f+"/"+file
    img = Image.open(f_img)
    img = img.resize((2296,1724))
    img.save(f_img)
Comment

PREVIOUS NEXT
Code Example
Python :: convert streamlit imageBytes = file.read() to image 
Python :: divide by zero errors when using annotate 
Python :: flask enumerate index 
Python :: print('Test set predictions: {}'.format(y_pred)) 
Python :: set threshold resnet18 pytorch 
Python :: assert len(lex) < self.bucket_specs[-1][1] 
Python :: anaconda create new environment 
Python :: how to shutdown your computer using python 
Python :: pandas series select first value 
Python :: python dump object print 
Python :: pandas show column types 
Python :: how to save inputs python 
Python :: pandas split train test 
Python :: ANSHUL 
Python :: pandas forward fill after upsampling 
Python :: resource wordnet not found python 
Python :: how to make basic inventory setup in python 
Python :: skewness python 
Python :: how to save to file in python 
Python :: access element of dataframe python 
Python :: join pyspark stackoverflow 
Python :: get wav file in dir 
Python :: print underline text python 
Python :: python accept user input 
Python :: python hex to bytes string 
Python :: How to find all primes less than some upperbound efficiently? 
Python :: dont filter= true in scrapy 
Python :: making hexagon in python turtle 
Python :: wxpython custom dialog 
Python :: python turtle window not responding 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =