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) • 451 B
TypeScript
import { MainLayoutVideoAnnotationState } from '../MainLayout/types.ts';
interface KeyframeTimelineProps {
currentTime?: number;
duration: number;
onChangeCurrentTime: (time: number) => void;
keyframes: MainLayoutVideoAnnotationState["keyframes"];
}
declare const _default: ({ currentTime, duration, onChangeCurrentTime, keyframes, }: KeyframeTimelineProps) => import("react/jsx-runtime").JSX.Element | null;
export default _default;