Skip to content

Commit

Permalink
Updating the cutout box boundaries
Browse files Browse the repository at this point in the history
  • Loading branch information
IFenton committed Dec 3, 2024
1 parent 1d212f6 commit 8fba5a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cloudcasting/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
# 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)

# Constants for the smaller (cropped) image
# 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)

0 comments on commit 8fba5a8

Please sign in to comment.