-
Notifications
You must be signed in to change notification settings - Fork 102
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
多人图片的识别问题 #4
Comments
Also, your idea of using DetectronV2 is nice. I would be more than happy to add a feature of cloth segmentation in multi-person picture into this repo through your pull request |
我已经找到问题的关键所在了!!!
|
在这个代码中 ,这两个问题我好像没遇到过,实际记不太清了。 我的环境是torch1.8 torchvision0.9 python3.6.5 cuda11.1 |
我后来,将以下强制转化为int型。就不会出现这个错误了。 我的环境是torch1.11 torchvision0.12 python 3.8 cuda 11.3 |
训练后,我在评估预测时,总是报内存不足问题。但是我的显卡内存为6G。按理说完全可以的。 |
会出现这个问题。在输入网络中的图片过大时 就会显存不够 |
我是在test数据集里随便找一张,都出现显存不够。 |
图片多大尺寸? |
分辨率:2832*4256 ;96dpi |
这个大小确实是会显存不够。我在24G的显卡上批量生成的时候,有个别图都会显存不够。 |
嗯嗯,我刚才找了一张800*1200的可以 |
请教你:看了你写的多人识别的函数很好。我们没测试,识别率高吗? |
Hi @xinzi2018 @levindabhi @davichen2017 .
Need your help. |
发现在多人图片的识别效果很不好,如下图的右上角的结果。
然后我使用一下代码的处理方式(先通过detectronV2检测出人体框,然后将人体框逐个人体输入到网络中,最后进行融合)
但是发现这种方式有很大的融合问题(上一个人体框会压到下一个上面,比如上图中下面那张图片左边两个人连接处的问题)。不知道是不是因为log_softmax的问题?
因为以前是sigmoid的到的概率值,用同样的融合方式都能很正确的融合。
The text was updated successfully, but these errors were encountered: