Don't crop by region for genai snapshot for manual events (#15525)

This commit is contained in:
Josh Hawkins 2024-12-15 17:03:19 -06:00 committed by GitHub
parent 33ee32865f
commit d49f958d4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -335,8 +335,10 @@ class EmbeddingMaintainer(threading.Thread):
)
# crop snapshot based on region before sending off to genai
# provide full image if region doesn't exist (manual events)
region = event.data.get("region", [0, 0, 1, 1])
height, width = img.shape[:2]
x1_rel, y1_rel, width_rel, height_rel = event.data["region"]
x1_rel, y1_rel, width_rel, height_rel = region
x1, y1 = int(x1_rel * width), int(y1_rel * height)
cropped_image = img[