How to annotate the ground truth for image segmentation?

前端 未结 6 522
-上瘾入骨i
-上瘾入骨i 2021-02-02 02:31

I\'m trying to train a CNN model that perform image segmentation, but I\'m confused how to create the ground truth if I have several image samples?

Image segmentation ca

相关标签:
6条回答
  • 2021-02-02 02:35

    For semantic segmentation every pixel of an image should be labeled. There are three following ways to address the task:

    1. Vector based - polygons, polylines

    2. Pixel based - brush, eraser

    3. AI-powered tools

    In Supervisely, tools to perform 1,2,3 are available.

    Below are two videos that compare polygon vs AI-powered tools: cars segmentation and food segmentation.

    More details about annotation features of Supervisely can be found here.

    0 讨论(0)
  • 2021-02-02 02:35

    I created an open source tool called COCO Annotator: It provide any features where other tools fall short:

    • Directly export to COCO format
    • Segmentation of objects
    • Useful API endpoints to analyze data
    • Import datasets already annotated in COCO format
    • Annotated disconnected objects as a single instance
    • Labeling image segments with any number of labels simultaneously
    • Allow custom metadata for each instance or object
    • Magic wand/select tool
    • Generate datasets using google images
    • User authentication system
    0 讨论(0)
  • 2021-02-02 02:38

    SageMaker Ground Truth has dataset management and UIs to enable semantic segmentation. https://aws.amazon.com/sagemaker/groundtruth/

    We recently released an enhancement to the UI which speeds up annotations considerably, by automatically finding region boundaries. Read about it here: https://aws.amazon.com/blogs/machine-learning/auto-segmenting-objects-when-performing-semantic-segmentation-labeling-with-amazon-sagemaker-ground-truth/

    0 讨论(0)
  • 2021-02-02 02:42

    you can use averaging and normalization techniques all over your dataset so create your ground truth and then label different structures. for this purpose, you can think about creating a so called |template|. make sure all your data are co registered initially.

    0 讨论(0)
  • 2021-02-02 02:47

    Try out https://www.labelbox.io/. Here is what their image segmentation template looks like...

    A lot of the code is open source and they have a hosted service to manage labeling end to end.

    0 讨论(0)
  • 2021-02-02 02:52

    One tool that pops to mind is MIT's LabelMe toolbox: this toolbox is mainly for browsing the existing labeled images of the dataset, but it has an option to annotated new images as well.

    There's alos this github repository for COCO UI you might find useful.

    0 讨论(0)
提交回复
热议问题