Closed wkywwds closed 7 months ago
Hi.
You can follow the data format and create the mask and .json
files.
I can provide more information if you have more specific questions.
Can the "id" in the json file be defined manually, or must it be generated by my own detector? Also, when "isthing" is fasle, does it represent the background? If so, can I not mask the background? Finally, what is the difference between the data formats in "vipseg" and "vos" and how are they used ![Uploading 9087689b74dd7debb764bd5f2184465.png…]()
Hi. You can follow the data format and create the mask and
.json
files. I can provide more information if you have more specific questions.
Can the "id" in the json file be defined manually, or must it be generated by my own detector? Also, when "isthing" is fasle, does it represent the background? If so, can I not mask the background? Finally, what is the difference between the data formats in "vipseg" and "vos" and how are they used
If it is said that the object of segmentation is not video, but a series of pictures, that is, the video is extracted frame by frame to generate a series of graphs. In this case, Need I detect all the images in the series and give each object in the picture an id?
- Doesn't matter.
- No. See the difference between thing and stuff in the COCO stuff paper.
- VOS is for the VOS task. VIPSeg is for the video panoptic/unsupervised/universal segmentation task. And Is the "isthing" referred to in the second point necessary?
How does the "id" associate with the masked objects in the image, such as horses and people
The id
is the pixel value of the corresponding object. If you read the mask file with PIL
, you can inspect the pixel values.
The algorithm tracks whatever that you detect.
I want to ask if this "--json_path" is a file directory or a file
Directory.
Hello, when running the DEMO item in the file EVALUATION.md, why did the following error occur?The script's parameters are set to: python eval_with_detections.py --mask_path "./example/vipseg/source" --img_path "./example/vipseg/images" --dataset demo --temporal_setting semionline --output "D:/Tracking-Anything-with-DEVA-main/example/output" --chunk_size 1
We do not officially support Windows but I have pushed a fix that might help with your problem. In the future, please open a separate issue for problems unrelated to this topic.
How can I generate the data format like
example/vipseg/source/12_1mWNahzcsAc
by U-net.