mmdetection测试单张/多张图片并保存(继大佬分享改错)

文章介绍了MMDetectionv1.0rc1版本后,如何在官方文档未更新的情况下测试单张图片,包括show_result()函数的封装、score_thr参数处理以及如何修改代码以避免报错。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

目录

----------------------------说明--------------------------------

--------------------------已解决-----------------------------


----------------------------说明--------------------------------

为了避免原链接失效,以下将在原文章复制几句做一个简单介绍。感谢大佬分享!

从mmdetectionv1.0rc1版本及以后的版本中,源代码有了一定的更新,而官方文档上用于测试单张图片的方法还并未更新。在mmdetectionv1.0rc1及以后的版本中,做了以下变更。因此,为测试图片,需要做对应的更改。

1、show_result()函数被封装进了show_result_pyplot()函数中。

2、在show_result_pyplot()函数中,并未留出保存测试好图片的接口。

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.youkuaiyun.com/weixin_41922853/article/details/118807709

报错1:show_result_pyplot(model, img, result, out_file, score_thr=0.6) TypeError: show_result_pyplot() got multiple values for argument 'score_thr':

报错2:if score_thr > 0: TypeError: '>' not supported between instances of 'str' and 'int'

--------------------------已解决-----------------------------

1、新建test.py,代码如下。

不同的是:show_result_pyplot(model, img, result, out_file)  #这里删去原博主的score_thr=0.6

from mmdet.apis import init_detector, inference_detector
from mmdet.apis import show_result_pyplot
import os

imagepath = r'D:\images'  # 需要加载的测试图片的文件路径
savepath = r'D:\test_img'  # 保存测试图片的路径
config_file = r'D:\documents\config.py'  # 网络模型
checkpoint_file = r'D:\documents\epoch_55.pth'  # 训练好的模型参数
device = 'cuda:0'
# init a detector
model = init_detector(config_file, checkpoint_file, device=device)
# inference the demo image

for filename in os.listdir(imagepath):
  img = os.path.join(imagepath, filename)
  result = inference_detector(model, img)
  out_file = os.path.join(savepath, filename)
  show_result_pyplot(model, img, result, out_file)  #-------这里删去原博主的score_thr=0.6---

2、跟着代码中注释修改mmdet\apis\inference.py文件中的以下函数:

# mmdet\apis\inference.py

 
def show_result_pyplot(model,
                       img,
                       result,
                       # score_thr=0.3,#-----这里直接删了--------
                       out_file,       #-------加这一行---------
                       title='result',
                       wait_time=0,
                       palette=None):
                       # out_file=None):


    if hasattr(model, 'module'):
        model = model.module
    model.show_result(
        img,
        result,
        score_thr=0.6,     #-----这里直接改为0.6--------
        show=True,
        out_file=out_file, #-------加这一行---------
        wait_time=wait_time,
        win_name=title,
        bbox_color=palette,
        text_color=(200, 200, 200),
        mask_color=palette)

如果不想保存只想看看show一下,不需保存,那就设置show_result_pyplot中的out_file=None

3、运行即可test.py即可。成功了,结果如下。

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值