Hitachi-Automotive-And-Industry-Lab / semantic-segmentation-editor

Web labeling tool for bitmap images and point clouds
MIT License
1.79k stars 438 forks source link

What is the data type of the label file? #117

Open hamin-song opened 3 years ago

hamin-song commented 3 years ago

Hi, thanks for making awesome labeling tool!!

I'm going to use your annotation tool as auto label correction. So I want to import label files which were predicted from deep learning model (such as RangeNet++, ConvPoint ...) And I'm trying to convert prediction results into the format of label file that your tool creates, but I'm having a hard time because I don't know the format.

What is the data type of the label file created in sse-internal?

dmandrioli commented 3 years ago

Hi, thank you 👍

Are you labeling bitmap images or point clouds?

hamin-song commented 3 years ago

Hi, thank you 👍

Are you labeling bitmap images or point clouds?

Wow.. thank you for your quick reply !! :-) I'm labeling point clouds!!

dmandrioli commented 3 years ago

The format is a JSON descriptor compressed with 2 different algorithms in a web worker to avoid browser hanging. The descriptor format is not documented but you may be able to look at it by adding breakpoints into this file which is responsible for the encoding of the output format.

By the way importing external data is not supported by the tool, it could be non trivial to implement.

Hope this helps.

hamin-song commented 3 years ago

The format is a JSON descriptor compressed with 2 different algorithms in a web worker to avoid browser hanging. The descriptor format is not documented but you may be able to look at it by adding breakpoints into this file which is responsible for the encoding of the output format.

By the way importing external data is not supported by the tool, it could be non trivial to implement.

Hope this helps.

Thank you very much for these information!! I don't think it'll be easy, but I'll try. Thanks 👍

GXU-doudou commented 2 years ago

@hamin-song hello, did you deal with this issue? I have the same problem with you. Hope you can reply,thanks!