-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
视频追踪目标过多时爆显存 #243
Comments
可以的。但是需要你自己合并下,软件没提供这个功能。 具体可以查看标注生成的json文件:1.每次标注n个目标生成的json中,会有n个object。2.将不同次标注的同名json文件中的object合并到同一个json中即可。 |
人工去合并每一帧图片的json文件也不太现实,能不能在软件提供一个脚本来执行这个功能呢。 |
不用手动合并,那工作量绝了。直接写个脚本读写json就好 |
import json json_file = open('ISAT_with_segment_anything/example/images/000000000113.json', 'r')
字段object是一个列表,把里面的内容取出来,合并,存到另一个json中就好了 |
合并的时候下面的group和layer是不是就重复了(因为两个json文件都是从1开始计数的),是不是要顺延增加? |
是的是的,忘了这个了T.T。 是需要顺延,不然group就重复了。 group这个是区分实例的,如果只做语义分割可以忽略这个字段。 |
写了个脚本来合并,对于一摊螺丝的跟踪标注,操作起来还是比较麻烦的。 def renumber_groups_layers(objects):
def merge_same_name_json_files(root_dir, output_dir):
参数1:存储同名json文件的根路径参数2:输出路径merge_same_name_json_files(r'E:\python\Yolo\Lable', r'E:\python\Yolo\merged Lable') |
我的显卡只有6gb显存,试了一下sam2的多目标视频追踪,发现最多只能追踪4个目标,显存就快用完了,标注更多目标时显存就爆了,程序就卡死了。
这个应用有没有办法分多次进行标注,例如一次只追踪4个目标,整个视频标注完成后下次再追踪另外4个目标,最后再将8个目标的结果合并?
The text was updated successfully, but these errors were encountered: