albumentations_examples icon indicating copy to clipboard operation
albumentations_examples copied to clipboard

resized_image = F.resize(image, height=256, width=256)

Open ArupSankarRoy opened this issue 1 year ago • 2 comments

AttributeError Traceback (most recent call last) in <cell line: 5>() 3 image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) 4 ----> 5 resized_image = F.resize(image, height=256, width=256) 6 padded_image = F.pad(image, min_height=512, min_width=512) 7 padded_constant_image = F.pad(image, min_height=512, min_width=512, border_mode=cv2.BORDER_CONSTANT)

AttributeError: module 'albumentations.augmentations.functional' has no attribute 'resize'

ArupSankarRoy avatar Feb 16 '24 19:02 ArupSankarRoy