File size: 191 Bytes
3ff1125
 
 
 
 
 
 
 
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;
}