simple-faster-rcnn-pytorch icon indicating copy to clipboard operation
simple-faster-rcnn-pytorch copied to clipboard

A simplified implemention of Faster R-CNN that replicate performance from origin paper

Results 112 simple-faster-rcnn-pytorch issues
Sort by recently updated
recently updated
newest added
trafficstars

Thanks you for remarkable code sharing! I have encountered a question here: In creator_tool.py line#94: roi = np.concatenate((roi, bbox), axis=0) Why concatenate here? The latter functions calculate the iou matrix...

I tried to write a detect.py for faster-rcnn by myself, according to the demo. But when I load model, it doesn't work. I've run convert_caffe_pretrain.py and used vgg16_caffe.pth. here is...