mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-02 00:07:11 +01:00
Don't crop by region for genai snapshot for manual events (#15525)
This commit is contained in:
parent
33ee32865f
commit
d49f958d4d
@ -335,8 +335,10 @@ class EmbeddingMaintainer(threading.Thread):
|
|||||||
)
|
)
|
||||||
|
|
||||||
# crop snapshot based on region before sending off to genai
|
# 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]
|
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)
|
x1, y1 = int(x1_rel * width), int(y1_rel * height)
|
||||||
cropped_image = img[
|
cropped_image = img[
|
||||||
|
Loading…
Reference in New Issue
Block a user