diff --git a/src/cloudcasting/constants.py b/src/cloudcasting/constants.py index c489a11..8891ad5 100644 --- a/src/cloudcasting/constants.py +++ b/src/cloudcasting/constants.py @@ -22,7 +22,7 @@ # Image size (height, width) IMAGE_SIZE_TUPLE = (372, 614) # Cutout mask (min x, max x, min y, max y) -CUTOUT_MASK_BOUNDARY = (127, 394, 104, 290) +CUTOUT_MASK_BOUNDARY = (166, 336, 107, 289) # Create cutout mask CUTOUT_MASK = create_cutout_mask(CUTOUT_MASK_BOUNDARY, IMAGE_SIZE_TUPLE) @@ -30,6 +30,6 @@ # Cropped image size (height, width) CROPPED_IMAGE_SIZE_TUPLE = (278, 385) # Cropped cutout mask (min x, max x, min y, max y) -CROPPED_CUTOUT_MASK_BOUNDARY = (70, 337, 59, 245) +CROPPED_CUTOUT_MASK_BOUNDARY = (109, 279, 62, 244) # Create cropped cutout mask CROPPED_CUTOUT_MASK = create_cutout_mask(CROPPED_CUTOUT_MASK_BOUNDARY, CROPPED_IMAGE_SIZE_TUPLE)