“UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure”在利用mask_rcnn进行物体检测的时候出现的问题,主要是因为matplotlib的使用格式不对
可以检查者两个地方:
1、visualize.py中
import matplotlib.pyplot as plt
改为:
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
2、pycocotools.coco.py中
import matplotlib; matplotlib.use('Agg')
import matplotlib.pyplot as plt
改为:
import matplotlib; matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
一般第二种方法就已经解决了