我在Windows系统下运行mmsegmentation,使用 MMSegInferencer 对单个图像执行推理,推理结果基本正确,但是在图像中出现了如下所示的标签,请问图中出现的标签怎么去除?
代码如下:
from mmseg.apis import MMSegInferencer
# 将模型加载到内存中
inferencer = MMSegInferencer(model='pidnet-s_2xb6-120k_1024x1024-cityscapes.py',
weights='pidnet-s_2xb6-120k_1024x1024-cityscapes_20230302_191700-bb8e3bcc.pth')
# 推理
inferencer('demo.png', show=True)