py-faster-rcnn
py-faster-rcnn copied to clipboard
Faster R-CNN (Python implementation) -- see https://github.com/ShaoqingRen/faster_rcnn for the official MATLAB version
How to add background as the training data? The background image is no goals. @rbgirshick @Dectinc @wangdelp @Queuecumber
I am using Faster RCNN with Inception V2 on custom dataset. My model is working fine with good detection accuracy. However, I am facing false positive problem when I pass...
Hi all, I am trying to train py-faster-rcnn network on PASCAL VOC 2007 dataset on 4 classes. I have changed the classes variable in pascal_voc.py and I have also made...
Hi I would like to extract features without RPN. I set the cfg.TEST.HAS_RPN = False, and input a certain coordinate for box, but there is an error saying in _Net_forward...
how do i forward specific bbox on faster-rcnn model? i try setting cfg.TEST.HAS_RPN 2 False and run im_detect, but it seems not trivial. i also dont want to go back...
Hi there. I am new to this forum, also i am new to deep learning. I was successful in running faster RCNN on pascal VOC dataset as described in the...
Hi all, I've trained a faster-RCNN network on my own dataset using the RPN. I just want to test (to test the proposal generation) my own proposals on a few...
Hi. I am trying to make caffe and I am getting following error. Can anyone help me to solve the problem? I have attached my Makefile.config file. ``` /usr/bin/ld: /usr/local/lib/libleveldb.a(db_impl.cc.o):...
Hi, I'm trying to compile this python version of Faster-RCNN on Windows. The modification was like: ``` if 'CUDA_PATH_V7_0' in os.environ: home = os.environ['CUDA_PATH_V7_0'] nvcc = pjoin(home, 'bin', 'nvcc.exe') ```...
Can some please help me in modifying this single class object detection dataset class to multiple class object detection dataset with bounding boxes annotations for 15 classes , with 0...