File size: 162 Bytes
29580f3 |
1 2 3 4 5 6 7 8 |
import type { FileData } from "@gradio/client";
import Box from "./Box";
export default class AnnotatedImageData {
image: FileData;
boxes: Box[] = [];
}
|
29580f3 |
1 2 3 4 5 6 7 8 |
import type { FileData } from "@gradio/client";
import Box from "./Box";
export default class AnnotatedImageData {
image: FileData;
boxes: Box[] = [];
}
|