This document summarizes the Faster R-CNN object detection framework. It inserts a Region Proposal Network after the last convolutional layer to directly produce region proposals rather than using external proposals. The RPN classifies anchors as object or not and regresses bounding box offsets. Proposals are then fed into Fast R-CNN for classification and further regression. Experiments show Faster R-CNN achieves real-time speeds of 0.2 seconds per image while maintaining accuracy, representing a 250x speedup over R-CNN and 25x over Fast R-CNN.