clc;
close all;
num = xlsread('D:\paper\1multiscale\figure\introduction\class_statistics.xlsx');
cls = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21];
R_CNN = num(1,:);
SPPNet = num(2,:);
Fast = num(3,:);
Faster = num(4,:);
SSD = num(5,:);
plot(cls,R_CNN,'r-*');
set(gca,'xtick',[1:1:21]);
set(gca,'XTickLabel',{'aero','bird','bike','boat','bottle','bus','car','cat','chair','cow','table','dog','horse','mbike','person','plant','sheep','sofa','train','tv','mAP'})
hold on
plot(cls,SPPNet,'b-s');
hold on
plot(cls,Fast,'g-+');
hold on
plot(cls,Faster,'m-o');
hold on
plot(cls,SSD,'m-p');
hold on;
h=legend('R-CNN','SPPNet','Fast R-CNN','Faster R-CNN','SSD');
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有