gradio_patch_selection / src /frontend /shared /AnnotatedImageData.ts
e2145005's picture
Upload folder using huggingface_hub
1e04a2b verified
import type { FileData } from "@gradio/client";
export default class AnnotatedImageData {
image: FileData;
patchIndex: number | null = null;
imgSize: number | null = null;
patchSize: number | null = null;
}