The main difference between R-CNN (Regions with CNN features) and Fast R-CNN lies in where the Convolutional Neural Network (CNN) feature extraction is performed relative to the region proposals. In R-CNN, region proposals are first generated using a selective search algorithm. Then, each region proposal is independently warped to a fixed size and passed through the CNN to extract features. This process is computationally expensive because the CNN needs to be run s....
Log in to view the answer