ssd object detection

SSD的英文全名是Single Shot MultiBox Detector,Single shot说明SSD算法属于one-stage方法,MultiBox说明SSD算法基于多框预测。

SSD是一种非常优秀的one-stage目标检测方法,one-stage算法就是目标检测和分类是同时完成的,其主要思路是利用CNN提取特征后,物体分类与框的回归同时进行,整个过程只需要一步,所以其优势是速度快。但是一个缺点是训练比较困难,这主要是因为正样本与负样本(背景)极其不均衡(一般训练的时候取负样本与正样本的比例维3:1),导致模型准确度稍低。


1.主干网络


SSD选用的主干网络是VGG,并且对VGG进行一定的修改,修改的地方为:

1.将fc6,fc7的全连接层改成全卷积层。

2.去点fc8层和dropout层。

3.增加conv6,conv7,conv8以及conv9.

本次实现一个5个类别的分类,所以简化了主干网络,此模型包含 7 个卷积层, 其中 4 个预测层, 预测层从第 4, 5, 6, 和 7 层做预测,keras代码如下:

conv1=Conv2D(32,(5,5),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv1')(x1)

    conv1=BatchNormalization(axis=3,momentum=0.99,name='bn1')(conv1)

    conv1=ELU(name='elu1')(conv1)

    pool1=MaxPooling2D(pool_size=(2,2),name='pool1')(conv1)


    conv2=Conv2D(48,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv2')(pool1)

    conv2=BatchNormalization(axis=3,momentum=0.99,name='bn2')(conv2)

    conv2=ELU(name='elu2')(conv2)

    pool2=MaxPooling2D(pool_size=(2,2),name='pool2')(conv2)


    conv3=Conv2D(64,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv3')(pool2)

    conv3=BatchNormalization(axis=3,momentum=0.99,name='bn3')(conv3)

    conv3=ELU(name='elu3')(conv3)

    pool3=MaxPooling2D(pool_size=(2,2),name='pool3')(conv3)


    conv4=Conv2D(64,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv4')(pool3)

    conv4=BatchNormalization(axis=3,momentum=0.99,name='bn4')(conv4)

    conv4=ELU(name='elu4')(conv4)

    pool4=MaxPooling2D(pool_size=(2,2),name='pool4')(conv4)


    conv5=Conv2D(48,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv5')(pool4)

    conv5=BatchNormalization(axis=3,momentum=0.99,name='bn5')(conv5)

    conv5=ELU(name='elu5')(conv5)

    pool5=MaxPooling2D(pool_size=(2,2),name='pool5')(conv5)


    conv6=Conv2D(48,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv6')(pool5)

    conv6=BatchNormalization(axis=3,momentum=0.99,name='bn6')(conv4)

    conv6=ELU(name='elu6')(conv6)

    pool6=MaxPooling2D(pool_size=(2,2),name='pool6')(conv6)


    conv7=Conv2D(32,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='conv7')(pool6)

    conv7=BatchNormalization(axis=3,momentum=0.99,name='bn7')(conv7)

    conv7=ELU(name='elu7')(conv7)

#输出classes形状(batch,height,width,n_boxes*n_classes)

    classes4=Conv2D(n_boxes[0]*n_classes,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='classes4')(conv4)

    classes5=Conv2D(n_boxes[1]*n_classes,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='classes5')(conv5)

    classes6=Conv2D(n_boxes[2]*n_classes,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='classes6')(conv6)

    classes7=Conv2D(n_boxes[3]*n_classes,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg),name='classes7')(conv7)

    #输出box形状(batch,height,width,n_boxes*4)

    boxes4=Conv2D(n_boxes[0]*4,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg))(conv4)

    boxes5=Conv2D(n_boxes[1]*4,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg))(conv5)

    boxes6=Conv2D(n_boxes[2]*4,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg))(conv6)

    boxes7=Conv2D(n_boxes[3]*4,(3,3),strides=(1,1),padding='same',kernel_initializer='he_normal',kernel_regularizer=l2(l2_reg))(conv7)

    #产生anchor box

    #输出anchor的形状 (batch,height,width,n_boxes,8)

    anchors4=AnchorBoxes(img_height,img_width,this_scale=scales[0],next_scale=scales[1],aspect_ratios=aspect_ratios[0],

                        two_boxes_for_ar1=two_boxes_for_ar1,this_steps=steps[0],this_offsets=offsets[0],

                        clip_boxes=clip_boxes,variances=variances,coords=coords,normalize_coords=normalize_coords,name='anchors4')(boxes4)

    anchors5=AnchorBoxes(img_height,img_width,this_scale=scales[1],next_scale=scales[2],aspect_ratios=aspect_ratios[1],

                        two_boxes_for_ar1=two_boxes_for_ar1,this_steps=steps[1],this_offsets=offsets[1],

                        clip_boxes=clip_boxes,variances=variances,coords=coords,normalize_coords=normalize_coords,name='anchors5')(boxes5)

    anchors6=AnchorBoxes(img_height,img_width,this_scale=scales[2],next_scale=scales[3],aspect_ratios=aspect_ratios[2],

                        two_boxes_for_ar1=two_boxes_for_ar1,this_steps=steps[2],this_offsets=offsets[2],

                        clip_boxes=clip_boxes,variances=variances,coords=coords,normalize_coords=normalize_coords,name='anchors6')(boxes6)

    anchors7=AnchorBoxes(img_height,img_width,this_scale=scales[3],next_scale=scales[4],aspect_ratios=aspect_ratios[3],

                        two_boxes_for_ar1=two_boxes_for_ar1,this_steps=steps[3],this_offsets=offsets[3],

                        clip_boxes=clip_boxes,variances=variances,coords=coords,normalize_coords=normalize_coords,name='anchors7')(boxes7)



    classes4_reshaped=Reshape((-1,n_classes),name='classes4_reshape')(classes4)

    classes5_reshaped=Reshape((-1,n_classes),name='classes5_reshape')(classes5)

    classes6_reshaped=Reshape((-1,n_classes),name='classes6_reshape')(classes6)

    classes7_reshaped=Reshape((-1,n_classes),name='classes7_reshape')(classes7)


    boxes4_reshaped=Reshape((-1,4),name='boxes4_reshape')(boxes4)

    boxes5_reshaped=Reshape((-1,4),name='boxes5_reshape')(boxes5)

    boxes6_reshaped=Reshape((-1,4),name='boxes6_reshape')(boxes6)

    boxes7_reshaped=Reshape((-1,4),name='boxes7_reshape')(boxes7)


    anchors4_reshaped=Reshape((-1,8),name='anchors4_reshape')(anchors4)

    anchors5_reshaped=Reshape((-1,8),name='anchors5_reshape')(anchors5)

    anchors6_reshaped=Reshape((-1,8),name='anchors6_reshape')(anchors6)

    anchors7_reshaped=Reshape((-1,8),name='anchors7_reshape')(anchors7)

    #classes_concat 形状 (batch,n_boxes_total,n_classes)

    classes_concat=Concatenate(axis=1,name='classes_concat')([classes4_reshaped,

                                                              classes5_reshaped,

                                                              classes6_reshaped,

                                                              classes7_reshaped])

    #boxes_concat 形状 (batch,n_boxes_total,4)

    boxes_concat=Concatenate(axis=1,name='boxes_concat')([boxes4_reshaped,

                                                          boxes5_reshaped,

                                                          boxes6_reshaped,

                                                          boxes7_reshaped])

    #anchors_concat 形状 (batch,n_boxes_total,8)

    anchors_concat=Concatenate(axis=1,name='anchors_concat')([anchors4_reshaped,

                                                              anchors5_reshaped,

                                                              anchors6_reshaped,

                                                              anchors7_reshaped])


    classes_softmax=Activation('softmax',name='classes_softmax')(classes_concat)

    predictions=Concatenate(axis=2,name='predictions')([classes_softmax,boxes_concat,anchors_concat])

    model = Model(inputs=x, outputs=decoded_predictions)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容