Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
[APPLE] Crop Last Face correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ktzug authored Aug 1, 2022
2 parents fd06090 + 877a67b commit 564f521
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## 2022.07.31
## Fixed
- **[APPLE]** Fixed an issue where coordinates were not
being converted to Panorama IDs correctly
- **[APPLE]** Fixed an issue where coordinates were not being converted to Panorama IDs correctly
- **[APPLE]** Last Panorama face is now cropped correctly
## Known Bugs
- **[YANDEX]** Short URL API not working #5
- **[GOOGLE]** Zoom 5 Stiching Tiles Borked #8
- **[BUILD]** pillow_heif doubling compiled executable up to 40MB #19
---
## 2022.07.30
## New Services
Expand Down
2 changes: 1 addition & 1 deletion sv-dlp/download/tiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def stitch(row):
images.append(img)

TILE_SIZE = round(images[0].width * (256 / 5632))
WIDTH_SIZE = round(images[0].width * (768 / 5632))
WIDTH_SIZE = round(images[0].width * (1024 / 5632))
widths, heights = zip(*(i.size for i in images))
total_width, max_height = (sum(widths)-WIDTH_SIZE), max(heights)
row_img = Image.new('RGB', (total_width, max_height))
Expand Down

0 comments on commit 564f521

Please sign in to comment.