I am doing a haar cascade to detect license plate images. Once such image is detected, i crop and save it to disk. This image will then be passed on (loaded) further down for processing & segmentation. It's a 'live feed' so it will continually capture it. How do i have it pass on to the next code once the image is saved?
this is the current code
for x,y,w,h in detected:
temp = img.draw_rectangle(x,y,w,h, thickness=5)
extracted = temp.crop(roi=(x,y,w,h),copy=False)
extracted.save('extracted_img.png')
in the same vein, further down, i segment the image and save 7 characters (my license plate has 7 characters). How do i go about exiting it once 7 images are saved?
This is partial code that's within a for loop that iterates through the list of detected bounding boxes
for i in range(len(detected_list)):
x = ...
y = ...
width = ...
height = ...
if height > width:
cropped.save('trial-%d'%i,roi=(x,y,width,height))
i managed to save the images but since it's live it'll keep overwriting the files. Similar to the above query, once i have 7 images saved i want to break out of this and continue with the rest of the code (which is passing the images into a character recognition model)