Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Rhapso/split_dataset/compute_grid_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def run(self):
Executes the entry point of the script.
"""
# image_sizes, min_size = self.collect_image_sizes()
min_step_size = self.find_min_step_size()
# min_step_size = self.find_min_step_size()
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Had to bypass this function and use min_step_size = [1, 1, 1]. See issue #117

min_step_size = [1, 1, 1]

sx = self.closest_larger_long_divisible_by(self.target_image_size[0], min_step_size[0])
sy = self.closest_larger_long_divisible_by(self.target_image_size[1], min_step_size[1])
Expand Down
Loading