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.
18 lines (16 loc) • 378 B
TypeScript
import { KeypointDefinition } from '../types/region-tools.ts';
type Parameters = {
center: {
x: number;
y: number;
};
scale: number;
landmarks: {
[key: string]: KeypointDefinition;
};
};
declare const _default: ({ center, scale, landmarks }: Parameters) => Record<string, {
x: number;
y: number;
}>;
export default _default;