This document compares different object detection algorithms that use convolutional neural networks: Single Shot Detector (SSD), Faster R-CNN, and R-FCN. These algorithms are evaluated based on their speed and accuracy when combined with different feature extractors like VGG-16, ResNet-101, Inception ResNet, and MobileNet. The algorithms are trained on the COCO dataset and their performance is measured using mean average precision (mAP). SSD is found to be the fastest since it performs all computations in one network without needing region proposals. However, Faster R-CNN and R-FCN achieve higher accuracy. The best combinations are found to be Faster R-CNN with ResNet-101 and R-FCN with ResNet