by Jamie Starling | Jun 15, 2022 | The Art of Technology
Histogram for a Gray Scale Image – Using Python. What is an image histogram – it is a profile of the occurrences of each gray level present in an image. In the visual example below – we are using a bar graph to visualize it. It starts at 0 and goes...
by Jamie Starling | Jan 26, 2022 | The Art of Technology
This Python function will read and text file and return text file contents. #usage yourContentHolder = return_text_file_content(path to text file) def return_text_file_content(file): encoding_format = “utf-8″ textDataFile = open(file,...
by Jamie Starling | Jan 14, 2022 | The Art of Technology
Need to return list of files in directory based on the file extension? This is a Python Code Snippet that will return a list of files based on extension from a directory including full path. #Usage yourlist =...
by Jamie Starling | Jan 13, 2022 | The Art of Technology
Before starting any automation project, It is a good idea to have a plan. Automation With PowerShell and Python: The Importance of Planning Before embarking on any automation project, it’s essential to have a well-thought-out plan. With over 35 years of...