File size: 191 Bytes
29580f3
 
 
 
 
 
c3fc836
29580f3
1
2
3
4
5
6
7
8
9
import type { FileData } from "@gradio/client";
import Box from "./Box";

export default class AnnotatedImageData {
    image: FileData;
    boxes: Box[] = [];
    orientation: number = 0;
}