Skip to content

open-mmlab/labelbee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
Jan 30, 2024
Mar 27, 2023
Oct 21, 2024
Jun 6, 2023
Oct 28, 2021
Dec 12, 2023
Jul 1, 2022
Jan 30, 2024
Apr 12, 2023
Dec 5, 2021
Dec 7, 2021
Dec 7, 2021
Dec 12, 2022
Jan 24, 2024

Repository files navigation

LabelBee

为标注而生,专注于标注体验的渲染、组件库。快速搭建标注应用。

English | 简体中文

特性

  • 即拆即用,简单配置即可创建标注应用
  • 渲染分离,可单独使用渲染模块

安装

# npm
npm install @labelbee/lb-annotation
npm install @labelbee/lb-components

# yarn
yarn add @labelbee/lb-annotation
yarn add @labelbee/lb-components

使用

快速开始例子

import React from 'react';
import ReactDOM from 'react-dom';
import { AnnotationView } from '@labelbee/lb-components';

const src = ''; // 可访问的图片路径

const DefaultComponent = () => {
  return (
    <AnnotationView
     src={src}
   />
  )
}

ReactDOM.render(<App />, document.querySelector('#app'));

文档

友情链接

LICENSE

该项目使用 Apache 2.0 license.