Skip to content

Commit

Permalink
fix(explorer): gui and code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Oct 22, 2024
1 parent 4f7d35b commit 8eb9ca4
Show file tree
Hide file tree
Showing 5 changed files with 286 additions and 194 deletions.
4 changes: 1 addition & 3 deletions pan3d/dataset_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,9 +519,7 @@ def _auto_select_slicing(
(
math.ceil((v[1] - v[0]) / self._resolution)
if self._resolution > 1 and v[1] - v[0] > 0 and k != self.t
else steps.get(k, 1)
if steps is not None and k != self.t
else 1
else steps.get(k, 1) if steps is not None and k != self.t else 1
),
]
for k, v in bounds.items()
Expand Down
Empty file added pan3d/explorers/__init__.py
Empty file.
Loading

0 comments on commit 8eb9ca4

Please sign in to comment.