You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
image_name = input("Please enter the name of the image file that you want to process: ") ## User input for the name of the image file.
image_directory = input("Please enter the directory that may contain the image: ") ## User input for the path of the image file.
## This function looks for and finds the desired file. You can specify a parent directory for the fundtion to look for, however if you have no idea where a file is; this functio will find it for you, just slower. If you have no idea where a file is, just type "/".
def find_the_image(file_name, directory_name):
files_found = []
for path, subdirs, files in os.walk(directory_name):
for name in files:
if(file_name == name):
file_path = os.path.join(path,name)
files_found.append(file_path)
print(files_found[0])
return files_found[0] ## Return the path.
image_path = Path(find_the_image(image_name, image_directory)) ## Inıtialize the path of the image file.
new_working_directory = image_path.parent ## Initialize the parent directory of the image path.
os.chdir(new_working_directory) ## Change the working directory of the script to the parent directory of the image path.