Genius-farmer
Genius-farmer
Just did this on utils ``` > def load_image(self, image_id): > """Load the specified image and return a [H,W,3] Numpy array. > # Load image > image = cv2.imread(self.image_info[image_id]['path']) >...
``` ~\AppData\Roaming\Python\Python36\site-packages\skimage\transform\_warps.py in resize(image, output_shape, order, mode, cval, clip, preserve_range, anti_aliasing, anti_aliasing_sigma) 98 output_shape = output_shape + (image.shape[-1], ) 99 elif output_ndim < image.ndim - 1: --> 100 raise ValueError("len(output_shape)...