edgargg's picture
Upload folder using huggingface_hub
c3fc836 verified
raw
history blame
191 Bytes
import type { FileData } from "@gradio/client";
import Box from "./Box";
export default class AnnotatedImageData {
image: FileData;
boxes: Box[] = [];
orientation: number = 0;
}