Remove obsolete comment

This commit is contained in:
Alexander Pacha 2022-08-30 11:44:15 +02:00
parent 1c7e8c5e21
commit 9db2bcc8b0

View file

@ -33,7 +33,6 @@ class SbbBinarizer:
if not image_path.exists(): if not image_path.exists():
raise ValueError(f"Image not found: {str(image_path)}") raise ValueError(f"Image not found: {str(image_path)}")
# Most operations are expecting BGR as this is the standard way how CV2 reads images
# noinspection PyUnresolvedReferences # noinspection PyUnresolvedReferences
img = cv2.imread(str(image_path)) img = cv2.imread(str(image_path))
original_image_height, original_image_width, image_channels = img.shape original_image_height, original_image_width, image_channels = img.shape