Coder Social home page Coder Social logo

bbox_interactive_webui's Introduction

交互式bbox可视化webui

ImageData: 存放图像和bbox的数据结构

visualize_generate_html: 只在本地生成html页面,可以用浏览器打开

visualize_start_server: 阻塞并开启http server,可以远程访问

Quickstart

from bboxi import ImageData, visualize_start_server

data = ImageData(img)
classes = ['dog', 'cat']
class_colors = [(255, 0, 0), (0, 0, 255)]
data.add_bbox((100, 100), (200, 200), 
    class_id=0, tags=['a', '123'], info='info here...')
data.add_bbox((100, 200), (200, 300), 
    class_id=1, tags=['bbb', '123'], info='info here...')
...

visualize_start_server([data], classes, class_colors, port=8080)

或者直接运行python bboxi.py,可以看到随机生成的demo

demo.png

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.