There is a program that accepts images containing license plates as arguments. This program extracts only the license plate itself, letter and number image from the image received as an argument. How to use this program is as follows.
C:\Users\gksql\Desktop\PlateRec>PlateRecog_saveDigits_Location someimage.jpg
This will create one image_Plate.jpg file that contains the license plate itself and several image_Digits_ (number) .jpg files that contain numbers or characters. The problem is that the execution command itself is quite long, and there are at least a few thousand images. That's why I want to run this PlateRecog_saveDigits_Location.exe file for all images containing license plates in any folder. As a matter of fact, I can not change the source of the PlateRecog_saveDigits_Location file at this time. I want to know how to iterate through all the images in a window.
Thank you for your wisdom.