I am building an image processing classifier. This line is giving me an error:
input_img_resize=cv2.resize(input_img,(128,128))
The error:
If you are working with several images (for example, 1000 images), it may be difficult for you to identify which image is giving you problems. It may also be that, there are several others that are corrupt. In such a case, the code below can be useful.
for file in filenames:
try:
image = cv2.resize(cv2.imread(file), (size, size))
except:
print(file)
where filenames
is a list which contains names of the images.
You are facing this problem because the image might not have been read properly while scanning. So do make sure tat image is loaded.
if input_img is not None:
img = cv2.resize(input_img, (IMG_SIZE,IMG_SIZE))
training_data.append([np.array(img), np.array(label)])
else:
print("image not loaded")
This skips the current image and then continue the scan. This breaks into two segments results as follows:
Hope this helps :)
Make sure the input_img's resolution is not zero, i.e, (0,0,number_of_channels) which means it is not finding any image. So add the following checking before performing operations on it:
if input_img.shape[0]!=0 and input_img.shape[1]!=0:
#operations on input_img
This is because the region of image is not properly identified. Here's one way you can try:
gray = cv2.cvtColor(input_img, cv2.COLOR_BGR2GRAY)
r = cv2.selectROI(gray)
cv2.selectROI()
This will let you to manually select the region of image in each pic if its not detected.
Well, obviously this line
input_img=cv2.imread(data_path + '/'+ dataset + '/'+ img )
returns an empty array.
You should check whether the image exists first before reading. And it is better not to use string combination to join file paths, use python os.path.join instead.
image_path = os.path.join(data_path, dataset, img)
if os.path.exist():
# Do stuff
It is because of one image.
To find the image I added a line of code that prints the name of the image before it enters the cv2.resize
and another line that prints the name after it is resized. It will automatically stop at the image with fault.