RFB Net: Fast Accurate Object Detection
RFB Net: Fast Accurate Object Detection
Object Detection
Beijing Advanced Innovation Center for Big Data and Brain Computing
Beihang University, Beijing 100191, China
{liusongtao, dhuang, yhwang}@[Link]
arXiv:1711.07767v3 [[Link]] 26 Jul 2018
1 Introduction
Fig. 1. Regularities in human population Receptive Field (pRF) properties. (A) pRF
size as a function of eccentricity in some human retinotopic maps, where two trends are
evident: (1) the pRF size increases with eccentricity in each map and (2) the pRF size
differs between maps. (B) The spatial array of the pRFs based on the parameters in
(A). The radius of each circle is the apparent RF size at the appropriate eccentricity.
Reproduced from [36] with the permission from J. Winawer and H. Horiguchi (https:
//[Link]/handle/2451/33887).
fact. For instance, [11] and [15] extract features from deeper CNN backbones,
like ResNet [11] and Inception [31]; [19] introduces a top-down architecture to
construct feature pyramids, integrating low-level and high-level information; and
the latest top-performing Mask R-CNN [9] produces an RoIAlign layer to gen-
erate more precise regional features. All these methods adopt improved features
to reach better results; however, such features basically come from deeper neu-
ral networks with heavy computational costs, making them suffer from a low
inference speed.
To accelerate detection, a single-stage framework is investigated, where the
phase of object proposal generation is discarded. Although the pioneering at-
tempts, namely You Look Only Once (YOLO) [24] and Single Shot Detector
(SSD) [22], illustrate the ability of real-time processing, they tend to sacrifice
accuracies, with a clear drop ranging from 10% to 40% relative to state-of-the-
art two-stage solutions [20]. More recently, Deconvolutional SSD (DSSD) [6] and
RetinaNet [20] substantially ameliorate the precision scores, which are compa-
rable to the top ones reported by the two-stage detectors. Unfortunately their
performance gains are credited to the very deep ResNet-101 [11] model as well,
which limits the efficiency.
RFB Net for Accurate and Fast Object Detection 3
Regarding current deep learning models, they commonly set RFs at the same
size with a regular sampling grid on a feature map, which probably induces some
loss in the feature discriminability as well as robustness. Inception [33] considers
RFs of multiple sizes, and it implements this concept by launching multi-branch
CNNs with different convolution kernels. Its variants [32,31,16] achieve compet-
itive results in object detection (in the two-stage framework) and classification
tasks. However, all kernels in Inception are sampled at the same center. A sim-
ilar idea appears in [3], where an Atrous Spatial Pyramid Pooling (ASPP) is
exploited to capture multi-scale information. It applies several parallel convolu-
tions with different atrous rates on the top feature map to vary the sampling
distance from the center, which proves effective in semantic segmentation. But
the features only have a uniform resolution from previous convolution layers of
the same kernel size, and compared to the daisy shaped ones, the resulting fea-
ture tends to be less distinctive. Deformable CNN [4] attempts to adaptively
adjust the spatial distribution of RFs according to the scale and shape of the
object. Although its sampling grid is flexible, the impact of eccentricity of RFs
is not taken into account, where all pixels in an RF contribute equally to the
output response and the most important information is not emphasized.
Inspired by the structure of RFs in the human visual system, this paper pro-
poses a novel module, namely Receptive Field Block (RFB), to strengthen the
deep features learned from lightweight CNN models so that they can contribute
to fast and accurate detectors. Specifically, RFB makes use of multi-branch pool-
ing with varying kernels corresponding to RFs of different sizes, applies dilated
convolution layers to control their eccentricities, and reshapes them to generate
final representation, as in Fig. 2. We then assemble the RFB module to the top
of SSD [22], a real-time approach with a lightweight backbone, and construct
an advanced one-stage detector (RFB Net). Thanks to such a simple module,
RFB Net delivers relatively decent scores that are comparable to the ones of
up-to-date deeper backbone network based detectors [19,18,20] and retains the
fast speed of the original lightweight detector. Additionally, the RFB module is
generic and imposes few constraints on the network architecture.
RFB
Module
Spatial array of
pRF in hV4
Fig. 2. Construction of the RFB module by combining multiple branches with different
kernels and dilated convolution layers. Multiple kernels are analogous to the pRFs of
varying sizes, while dilated convolution layers assign each branch with an individual
eccentricity to simulate the ratio between the size and eccentricity of the pRF. With
a concatenation and 1×1 conv in all the branches, the final spatial array of RF is
produced, which is similar to that in human visual systems, as depicted in Fig. 1.
2 Related Work
Two-stage detector: R-CNN [8] straightforwardly combines the steps of crop-
ping box proposals like Selective Search [35] and classifying them through a CNN
model, yielding a significant accuracy gain compared to traditional methods,
which opens the deep learning era in object detection. Its descendants (e.g., Fast
R-CNN [7], Faster R-CNN [26]) update the two-stage framework and achieve
dominant performance. Besides, a number of effective extensions are proposed
to further improve the detection accuracy, such as R-FCN [17], FPN [19], Mask
R-CNN [9].
One-stage detector: The most representative one-stage detectors are YOLO
[24,25] and SSD [22]. They predict confidences and locations for multiple objects
RFB Net for Accurate and Fast Object Detection 5
based on the whole feature map. Both the detectors adopt lightweight backbones
for acceleration, while their accuracies apparently trail those of top two-stage
methods.
Recent more advanced single-stage detectors (e.g., DSSD [6] and RetinaNet
[20]) update their original lightweight backbones by the deeper ResNet-101 and
apply certain techniques, such as deconvolution [6] or Focal Loss [20], whose
scores are comparable and even superior to the ones of state-of-the-art two-stage
methods. However, such performance gains largely consume their advantage in
speed.
Receptive field: Recall that in this study, we aim to improve the perfor-
mance of high-speed single-stage detectors without incurring too much com-
putational burden. Therefore, instead of applying very deep backbones, RFB,
imitating the mechanism of RFs in the human visual system, is used to en-
hance lightweight model based feature representation. Actually, there exist sev-
eral studies that discuss RFs in CNN, and the most related ones are the Inception
family [33,32,31], ASPP [3], and Deformable CNN [4].
The Inception block adopts multiple branches with different kernel sizes to
capture multi-scale information. However, all the kernels are sampled at the same
center, which requires much larger ones to reach the same sampling coverage and
thus loses some crucial details. For ASPP, dilated convolution varies the sam-
pling distance from the center, but the features have a uniform resolution from
the previous convolution layers of the same kernel size, which treats the clues
at all the positions equally, probably leading to confusion between object and
context. Deformable CNN [4] learns distinctive resolutions of individual objects,
unfortunately it holds the same downside as ASPP. RFB is indeed different from
them, and it highlights the relationship between RF size and eccentricity in a
daisy-shape configuration, where bigger weights are assigned to the positions
nearer to the center by smaller kernels, claiming that they are more important
than the farther ones. See Fig. 3 for differences of the four typical spatial RF
structures. On the other side, Inception and ASPP have not been successfully
adopted to improve one-stage detectors, while RFB shows an effective way to
make use of their advantages in this issue.
3 Method
In this section, we revisit the human visual cortex, introduce our RFB compo-
nents and the way to simulate such a mechanism, and describe the architecture
of the RFB Net detector as well as its training/testing schedule.
During the past few decades, it has come true that functional Magnetic Res-
onance Imaging (fMRI) non-invasively measures human brain activities at a
resolution in millimeter, and RF modeling has become an important sensory sci-
ence tool used to predict responses and clarify brain computations. Since human
6 Songtao Liu, Di Huang, and Yunhong Wang
1x1 conv
deformable conv
3x3 conv 3x3 conv
3x3 conv 3x3 conv
5x5 conv
Fig. 3. Four typical structures of Spatial RFs. (a) shows the kernels of multiple sizes in
Inception. (b) demonstrates the daisy-like pooling configuration in ASPP. (c) adopts
deformable conv to produce an adaptive RF according to object characteristics. (d)
illustrates the mechanism of RFB. The color map of each structure is the effective
RF derived from one correspondent layer in the trained model, depicted by the same
gradient back-propagation method in [23]. In (a) and (b), we adjust the RF sizes in
original Inception and ASPP for fair comparison.
1x1 Conv 3x3 Conv 5x5 Conv 1x1 Conv 1x3 Conv 3x1 Conv 3x3 Conv
1x1 Conv 1x1 Conv 1x1 Conv 1x1 Conv 1x1 Conv
Fig. 4. The architectures of RFB and RFB-s. RFB-s is employed to mimic smaller
pRFs in shallow human retinotopic maps, using more branches with smaller kernels.
Following [32], we use two layers of 3 × 3 conv replacing 5 × 5 to reduce parameters,
which is not shown for better visualization.
The proposed RFB Net detector reuses the multi-scale and one-stage framework
of SSD [22], where the RFB module is embedded to ameliorate the feature ex-
tracted from the lightweight backbone so that the detector is more accurate and
8 Songtao Liu, Di Huang, and Yunhong Wang
19 RFB
300 10
38 5
19
3
10
5 1
3
1
Fig. 5. The pipeline of RFB-Net300. The conv4 3 feature map is tailed by RFB-s which
has smaller RFs and an RFB module with stride 2 is produced by operating 2-stride
multi-kernel conv-layers in the original RFB.
still fast enough. Thanks to the property of RFB for easily being integrated into
CNNs, we can preserve the SSD architecture as much as possible. The main
modification lies in replacing the top convolution layers with RFB, and some
minor but active ones are given in Fig. 5.
Lightweight backbone: We use exactly the same backbone network as in
SSD [22]. In brief, it is a VGG16 [30] architecture pre-trained on the ILSVRC
CLS-LOC dataset [27], where its fc6 and fc7 layers are converted to convolutional
layers with sub-sampling parameters, and its pool5 layer is changed from 2×2-s2
to 3×3-s1. The dilated convolution layer is used to fill holes and all the dropout
layers and the fc8 layer are removed. Even though many accomplished lightweight
networks have recently been proposed (e.g. DarkNet [25], MobileNet [12], and
ShuffleNet [39]), we focus on this backbone to achieve direct comparison to the
original SSD [22].
RFB on multi-scale feature maps: In the original SSD [22], the base
network is followed by a cascade of convolutional layers to form a series of feature
maps with consecutively decreasing spatial resolutions and increasing fields of
view. In our implementation, we keep the same cascade structure of SSD, but the
front convolutional layers with feature maps of relatively large resolutions are
replaced by the RFB module. In the primary version of RFB, we use a a single
structure setting to imitate the impact of eccentricity. As the rate of the size
and eccentricity of pRF differs between visual maps, we correspondingly adjust
the parameters of RFB to form an RFB-s module, which mimics smaller pRFs
in shallow human retinotopic maps, and put it behind the conv4 3 features, as
illustrated in Fig. 4 and Fig. 5. The last few convolutional layers are preserved
since the resolutions of their feature maps are too small to apply filters with
large kernels like 5 × 5.
RFB Net for Accurate and Fast Object Detection 9
We implement our RFB Net detector based on the framework of Pytorch1 , uti-
lizing several parts of open source infrastructures provided by the [Link]
repository2 . Our training strategies mostly follow SSD, including data augmen-
tation, hard negative mining, scale and aspect ratios for default boxes, and loss
functions (e.g., smooth L1 loss for localization and softmax loss for classification),
while we slightly change our learning rate scheduling for better accommodation
of RFB. More details are given in the following section of experiments. All new
conv-layers are initialized with the MSRA method [10].
4 Experiments
We conduct experiments on the Pascal VOC 2007 [5] and MS COCO [21]
datasets, which have 20 and 80 object categories respectively. In VOC 2007,
a predicted bounding box is positive if its Intersection over Union (IoU) with
the ground truth is higher than 0.5, while in COCO, it uses various thresholds for
more comprehensive calculation. The metric to evaluate detection performance
is the mean Average Precision (mAP).
In this experiment, we train our RFB Net on the union of 2007 trainval set and
2012 trainval set. We set the batch size at 32 and the initial learning rate at 10−3
as in the original SSD [22], but it makes the training process not so stable as the
loss drastically fluctuates. Instead, we use a “warmup” strategy that gradually
ramps up the learning rate from 10−6 to 4 × 10−3 at the first 5 epochs. After the
“warmup” phase, it goes back to the original learning rate schedule, divided by
10 at 150 and 200 epochs. The total number of training epochs is 250. Following
[22], we utilize a weight decay of 0.0005 and a momentum of 0.9.
Table 1 shows the comparison between our results and the state of the art
ones on the VOC2007 test set. SSD300* and SSD512* are the updated SSD
results with an expansion of data augmentation [22], which zooms out the images
to create more small examples. For fair comparison, we reimplement SSD with
Pytorch-0.3.0 and CUDNN V6, the same environment as that of RFB Net. By
integrating the RFB layers, our basic model, i.e. RFB Net300, outperforms SSD
and YOLO with an mAP of 80.5%, while keeping the real-time speed as SSD300.
It even reaches the same accuracy with R-FCN [17], the advanced model under
the two-stage framework. RFB Net512 achieves the mAP of 82.2% with a larger
input size, better than most one stage and two stage object detection systems
equipped with very deep base backbone networks, while still running at a high
speed.
1
[Link]
2
[Link]
10 Songtao Liu, Di Huang, and Yunhong Wang
Table 1. Comparison of detection methods on the PASCAL VOC 2007 test set. All
runtime information is computed on a Graphics card of Geforce GTX Titan X (Maxwell
architecture).
SSD* RFB
RFB-max pooling? ! ! !
Add RFB-s? ! ! ! !
More Prior? ! ! ! !
RFB-avg pooling? !
RFB-dilated conv? ! !
77.2 79.1 79.6 79.8 79.8 80.1 80.5
Table 2. Effectiveness of various designs on the VOC 2007 test set (refer to Section 3.3
and Section 4.2 for more details).
Architecture #parameters VOC 2007 mAP (%) COCO minival mAP (%)
RFB 34.5M 80.1 29.7
Inception [33] 32.9M 78.4 27.3
Inception-L 33.3M 79.5 28.5
ASPP-S 33.4M 79.7 28.1
Deformable CNN [4] 35.2M 79.5 27.6
Table 3. Comparison of different blocks on VOC 2007 test and MS COCO minival2014.
To further validate the proposed RFB module, we carry out experiments on the
MS COCO dataset. Following [22,20], we use the trainval35k set (train set +
val 35k set) for training and set the batch size at 32. We keep the original SSD
strategy that decreases the size of default boxes, since objects in COCO are
smaller than those in PASCAL VOC. At the begin of training, we still apply the
12 Songtao Liu, Di Huang, and Yunhong Wang
“warmup” technique that progressively increases the learning rate from 10−6 to
2 × 10−3 at the first 5 epochs, then decrease it after 80 and 100 epochs by the
factor of 10, and end up at 120.
From Table 4, it can be seen that RFB Net300 achieves 30.3%/49.3% on the
test-dev set, which surpasses the baseline score of SSD300* with a large margin,
and even equals to that of R-FCN [17] which employs ResNet-101 as the base
net with a larger input size (600×1000) under the two stage framework.
Regarding the bigger model, the result of RFB Net512 is slightly inferior to
but still comparable to the one of the recent advanced one-stage model Reti-
naNet500 (33.8% vs. 34.4%). However, it should be noted that RetinaNet makes
use of the deep ResNet-101-FPN backbone and a new loss to make learning focus
on hard examples, while our RFB Net is only built on a lightweight VGG model.
On the other hand, we can see that RFB Net500 averagely consumes 30 ms per
image, while RetinaNet needs 90 ms.
One may notice that RetinaNet800 [20] reports the top accuracy (39.1%)
based on a very high resolution up to 800 pixels. Although it is well known that
a larger input image size commonly yields higher performance, it is out of the
scope of this study, where an accurate and fast detector is pursued. Instead, we
consider two efficient updates: (1) to up-sample the conv7 fc feature maps and
concat it with the conv4 3 before applying the RFB-s module, sharing a similar
strategy as in FPN [19]; and (2) to add a branch with a 7 × 7 kernel in all RFB
layers. As we can see in Table 4, they further increase the performance, making
the best score in this study at 34.4% (denoted as RFB Net512-E), while the
computational cost only marginally ascends.
Table 4. Detection performance on the COCO test-dev 2015 dataset. Almost all the
methods are measured on the Nvidia Titan X (Maxwell architecture) GPU, except
RetinaNet, Mask R-CNN and FPN (Nvidia M40 GPU).
RFB Net for Accurate and Fast Object Detection 13
40.0
RFB Net300 G
RFB Net512
37.5
RFB Net512-E
35.0
F
D
MS COCO mAP(%)
32.5 E
mAP(%) Time(ms)
[A] YOLOv2 [25] 21.6 25
30.0 B [B] R-FCN [17] 29.9 110
C [C] SSD512* [22] 28.8 28
27.5 [D] DSSD513 [6] 33.2 182
[E] Retina-50-500 [20] 32.5 73
[F] Retina-101-500 [20] 34.4 90
25.0 [G] Retina-101-800 [20] 39.1 198
RFB-Net300 30.3 15
RFB-Net512 33.8 30
22.5 RFB-Net512-E 34.4 33
A
20.0
50 100 150 200 250 300
Inference time (ms)
Fig. 6. Speed (ms) vs. accuracy (mAP) on MS COCO test-dev. Enabled by the pro-
posed RFB module, our single one-stage detector surpasses all existing high frame rate
detectors, including the best reported one-stage system Retina-50-500 [20].
5 Discussion
Inference speed comparison: In Table 1 and Fig. 6, we show speed compar-
ison to other recent top-performing detectors. In our experiments, the inference
speeds in different datasets have slight variations, since MS COCO has 80 cat-
egories and average dense instances consume more time on the NMS process.
Table 1 shows that our RFB Net300 is the most accurate one (80.5% mAP)
among the real-time detectors and runs at 83 fps in Pascal VOC, and RFB
Net512 provides more accurate results still with a speed of 38 fps. In Fig. 6, we
follow [20] to plot the speed/accuracy trade-off curve for RFB Net, and com-
pare it to RetinaNet [20] and other recent methods on the MS COCO test-dev
set. This plot displays that our RFB Net forms an upper envelope among all
the real-time detectors. In particular, RFB Net300 keeps a high speed (66 fps)
while outperforming all the high frame rate counterparts. Note that they are
measured on the same Titan X (Maxwell architecture) GPU, except RetinaNet
(Nvidia M40 GPU).
Other lightweight backbone: Although the base backbone we use is a
reduced VGG16 version, it still has a large number of parameters compared
with those recent advanced lightweight networks, e.g., MobileNet [12], DarkNet
[25], and ShuffleNet [39]. To further test the generalization ability of the RFB
module, we link RFB to MobileNet-SSD [12]. Following [12], we train it on the
MS COCO train+val35k dataset with the same schedule and make evaluation
on minival. Table 5 shows that RFB still increases the accuracy of the MobileNet
14 Songtao Liu, Di Huang, and Yunhong Wang
backbone with limited additional layers and parameters. This suggests its great
potential for applications on low-end devices.
Training from scratch: We also notice another interesting property of the
RFB module, i.e. efficiently training the object detector from scratch. Recently,
according to [28], training without using pre-trained backbones is discovered
to be a hard task, where all the structures of base nets fail to be trained from
scratch in the two-stage framework and the prevalent CNNs (ResNet or VGG) in
the one-stage framework successfully converge with much worse results. Deeply
Supervised Object Detectors (DSOD) [28] proposes a lightweight structure which
achieves a 77.7% mAP on the VOC 2007 test set without pre-training, but it
does not promote the performance when using pre-trained network. We train our
RFB Net300 on the VOC 07+12 trainval set from scratch and reach a 77.6%
mAP on the same test set, which is comparable to DSOD. It is worth noting
that our pre-trained version boosts the performance to 80.5%.
6 Conclusion
In this paper, we propose a fast yet powerful object detector. In contrast to the
widely employed way that greatly deepens the backbone, we choose to enhance
feature representation of lightweight networks by bringing in a hand-crafted
mechanism, namely Receptive Field Block (RFB), which imitates the structure
of RF in human visual systems. RFB measures the relationship between the size
and eccentricity of RFs, and generates more discriminative and robust features.
RFB is equipped on the top of lightweight CNN based SSD, and the resulting
detector delivers a significant performance gain on the Pascal VOC and MS
COCO databases, where the final accuracies are even comparable to those of
existing top-performing deeper model based detectors. In addition, it retains the
advantage in processing speed of lightweight models.
Acknowledgment
This work was partly supported by the National Key Research and Development
Plan (Grant No. 2016YFC0801002) and the National Natural Science Founda-
tion of China (No. 61421003).
RFB Net for Accurate and Fast Object Detection 15
References
1. Brown, M., Hua, G., Winder, S.: Discriminative learning of local image descriptors.
TPAMI (2011)
2. Chen, L.C., Papandreou, G., Kokkinos, I., Murphy, K., Yuille, A.L.: Deeplab: Se-
mantic image segmentation with deep convolutional nets, atrous convolution, and
fully connected crfs. arXiv preprint arXiv:1606.00915 (2016)
3. Chen, L.C., Papandreou, G., Schroff, F., Adam, H.: Rethinking atrous convolution
for semantic image segmentation. arXiv preprint arXiv:1706.05587 (2017)
4. Dai, J., et al.: Deformable convolutional networks. In: ICCV (2017)
5. Everingham, M., Van Gool, L., Williams, C.K., Winn, J., Zisserman, A.: The pascal
visual object classes (voc) challenge. IJCV (2010)
6. Fu, C.Y., et al.: Dssd: Deconvolutional single shot detector. arXiv preprint
arXiv:1701.06659 (2017)
7. Girshick, R.: Fast r-cnn. In: ICCV (2015)
8. Girshick, R., Donahue, J., Darrell, T., Malik, J.: Rich feature hierarchies for accu-
rate object detection and semantic segmentation. In: CVPR (2014)
9. He, K., Gkioxari, G., Dollár, P., Girshick, R.: Mask r-cnn. In: ICCV (2017)
10. He, K., Zhang, X., Ren, S., Sun, J.: Delving deep into rectifiers: Surpassing human-
level performance on imagenet classification. In: ICCV (2015)
11. He, K., Zhang, X., Ren, S., Sun, J.: Deep residual learning for image recognition.
In: CVPR (2016)
12. Howard, A.G., Zhu, M., Chen, B., Kalenichenko, D., Wang, W., Weyand, T., An-
dreetto, M., Adam, H.: Mobilenets: Efficient convolutional neural networks for
mobile vision applications. arXiv preprint arXiv:1704.04861 (2017)
13. Hu, P., Ramanan, D.: Finding tiny faces. In: CVPR (2017)
14. Huang, D., Zhu, C., Wang, Y., Chen, L.: Hsog: a novel local image descriptor
based on histograms of the second-order gradients. IEEE Transactions on Image
Processing 23(11), 4680–4695 (2014)
15. Huang, J., et al.: Speed/accuracy trade-offs for modern convolutional object de-
tectors. In: CVPR (2017)
16. Kim, K.H., Hong, S., Roh, B., Cheon, Y., Park, M.: Pvanet: Deep but lightweight
neural networks for real-time object detection. arXiv preprint arXiv:1608.08021
(2016)
17. Li, Y., He, K., Sun, J., et al.: R-fcn: Object detection via region-based fully con-
volutional networks. In: NIPS (2016)
18. Li, Y., Qi, H., Dai, J., Ji, X., Wei, Y.: Fully convolutional instance-aware semantic
segmentation. In: CVPR (2017)
19. Lin, T.Y., Dollár, P., Girshick, R., He, K., Hariharan, B., Belongie, S.: Feature
pyramid networks for object detection. In: CVPR (2017)
20. Lin, T.Y., Goyal, P., Girshick, R., He, K., Dollár, P.: Focal loss for dense object
detection. In: ICCV (2017)
21. Lin, T.Y., Maire, M., Belongie, S., Hays, J., Perona, P., Ramanan, D., Dollár, P.,
Zitnick, C.L.: Microsoft coco: Common objects in context. In: ECCV (2014)
22. Liu, W., Anguelov, D., Erhan, D., Szegedy, C., Reed, S., Fu, C.Y., Berg, A.C.: Ssd:
Single shot multibox detector. In: ECCV (2016)
23. Luo, W., et al.: Understanding the effective receptive field in deep convolutional
neural networks. In: NIPS (2016)
24. Redmon, J., Divvala, S., Girshick, R., Farhadi, A.: You only look once: Unified,
real-time object detection. In: CVPR (2016)
16 Songtao Liu, Di Huang, and Yunhong Wang
25. Redmon, J., Farhadi, A.: Yolo9000: Better, faster, stronger. In: CVPR (2017)
26. Ren, S., He, K., Girshick, R., Sun, J.: Faster r-cnn: Towards real-time object de-
tection with region proposal networks. In: NIPS (2015)
27. Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z.,
Karpathy, A., Khosla, A., Bernstein, M., et al.: Imagenet large scale visual recog-
nition challenge. IJCV (2015)
28. Shen, Z., Liu, Z., Li, J., Jiang, Y.G., Chen, Y., Xue, X.: Dsod: Learning deeply
supervised object detectors from scratch. In: ICCV (2017)
29. Simonyan, K., Vedaldi, A., Zisserman, A.: Learning local feature descriptors using
convex optimisation. TPAMI (2014)
30. Simonyan, K., Zisserman, A.: Very deep convolutional networks for large-scale
image recognition. In: NIPS (2014)
31. Szegedy, C., Ioffe, S., Vanhoucke, V., Alemi, A.A.: Inception-v4, inception-resnet
and the impact of residual connections on learning. In: AAAI (2017)
32. Szegedy, C., Vanhoucke, V., Ioffe, S., Shlens, J., Wojna, Z.: Rethinking the incep-
tion architecture for computer vision. In: CVPR (2016)
33. Szegedy, C., et al.: Going deeper with convolutions. In: CVPR (2015)
34. Tola, E., Lepetit, V., Fua, P.: A fast local descriptor for dense matching. In: CVPR
(2008)
35. Uijlings, J.R., Van De Sande, K.E., Gevers, T., Smeulders, A.W.: Selective search
for object recognition. IJCV (2013)
36. Wandell, B.A., Winawer, J.: Computational neuroimaging and population recep-
tive fields. Trends in Cognitive Sciences (2015)
37. Weng, D., Wang, Y., Gong, M., Tao, D., Wei, H., Huang, D.: Derf: distinctive
efficient robust features from the biological modeling of the p ganglion cells. IEEE
Transactions on Image Processing 24(8), 2287–2302 (2015)
38. Winder, S.A., Brown, M.: Learning local image descriptors. In: CVPR (2007)
39. Zhang, X., Zhou, X., Lin, M., Sun, J.: Shufflenet: An extremely efficient convolu-
tional neural network for mobile devices. arXiv preprint arXiv:1707.01083 (2017)