react-visual-annotator
Version:
Powerful React image and video annotation tool for machine learning, computer vision, and AI training data creation. Features rotatable bounding boxes, polygons, keypoints, segmentation with TypeScript support and Material-UI components.
11 lines (9 loc) • 542 B
TypeScript
import { MainLayoutVideoAnnotationState } from '../MainLayout/types.ts';
interface KeyframesSelectorSidebarBoxProps {
currentVideoTime?: number;
keyframes: MainLayoutVideoAnnotationState["keyframes"];
onChangeVideoTime: (time: number) => void;
onDeleteKeyframe: (time: number) => void;
}
declare const KeyframesSelectorSidebarBox: ({ currentVideoTime, keyframes, onChangeVideoTime, onDeleteKeyframe, }: KeyframesSelectorSidebarBoxProps) => import("react/jsx-runtime").JSX.Element;
export default KeyframesSelectorSidebarBox;