Python Forum
Looping through each images in a give folder Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Looping through each images in a give folder Python
#1
Here I am trying to loop through each image file in a folder .
The code :
import cv2
import numpy as np
import os
 
# Directory containing jpg files
directory = r"F:/PyProject/PyCode/Images"
 

imgs=[]
 
# Loop through each file in the directory
for filename in os.listdir(directory):
    
    imgs = cv2.imread(filename)

    alpha = 2.0
    beta = -130

    new = alpha * imgs + beta
    new = np.clip(new, 0, 255).astype(np.uint8)
    # file name should be 01_filename.jpg
    cv2.imwrite("index_filename.'jpg'", new)
Error:
new = alpha * imgs + beta ~~~~~~^~~~~~ TypeError: unsupported operand type(s) for *: 'float' and 'NoneType'
Not able to find where I am going wrong:
Gribouillis write Jan-01-2025, 09:00 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply
#2
What exactly do you want to do?

You declared imgs as an empty list:

Quote:imgs=[]

Then later:

for filename in os.listdir(directory):
    imgs = cv2.imread(filename)
That is a problem. But if filename exists, you should be able to read it. The problem is, you have no path, just the names of the files in your path if you use

os.listdir(directory)
you get a list of file names in that directory, but not the path to the file.

The simplest solution is:

# Directory containing jpg files
directory = r"F:/PyProject/PyCode/Images/"

for filename in os.listdir(directory):
    img = cv2.imread(directory + filename)
    # do some magic
cv2 will not raise an error if you give it a non-existent image name to read.

I have no image called bigpic.jpg in my path destination. Try something like this

import cv2 as cv
import sys

destination = 'cv2/images/steps/'
name = input('Enter the name of the picture you want to analyse ... ')
# Enter the name of the picture you want to analyse ... bigpic.jpg
image = cv.imread(destination + name, cv.IMREAD_GRAYSCALE)
if image is None:
    sys.exit("Could not read the image.")

Output:
SystemExit: Could not read the image.
Look up the module pathlib and use Path to define the paths to your files, that will be much better than os.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question How to add Python folder in Windows Registry ? Touktouk 1 1,174 Feb-20-2024, 01:04 PM
Last Post: DeaD_EyE
  Compare folder A and subfolder B and display files that are in folder A but not in su Melcu54 3 1,416 Jan-05-2024, 05:16 PM
Last Post: Pedroski55
  python gzip all files from a folder mg24 3 6,528 Oct-28-2022, 03:59 PM
Last Post: mg24
  Make a python folder .exe Extra 0 1,472 Jun-10-2022, 01:20 AM
Last Post: Extra
  Compare filename with folder name and copy matching files into a particular folder shantanu97 2 6,184 Dec-18-2021, 09:32 PM
Last Post: Larz60+
  Move file from one folder to another folder with timestamp added end of file shantanu97 0 3,082 Mar-22-2021, 10:59 AM
Last Post: shantanu97
  how to read multispectral images on python noorasim 0 2,316 Feb-28-2021, 03:54 PM
Last Post: noorasim
  Looping through Folder structure and get files mfkzolo 0 2,227 Nov-02-2020, 08:31 AM
Last Post: mfkzolo
  Python broken if moved to a different folder ecastrotns 3 3,618 Oct-26-2020, 10:53 PM
Last Post: ecastrotns
  Virtual Assistant code is looping back in python ShishirModi 1 3,372 Oct-13-2020, 08:04 AM
Last Post: Nickd12

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020