mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
|
|
import { writable } from 'svelte/store';
|
||
|
|
|
||
|
|
export interface Faces {
|
||
|
|
imageHeight: number;
|
||
|
|
imageWidth: number;
|
||
|
|
boundingBoxX1: number;
|
||
|
|
boundingBoxX2: number;
|
||
|
|
boundingBoxY1: number;
|
||
|
|
boundingBoxY2: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const boundingBoxesArray = writable<Faces[]>([]);
|