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
Recently I reinstalled caffe and py-faster-rcnn, everythong works well except that I get a lot of overlapped detection bounding boxes in my result. Then I find it is because the...
ubuntu18.04 CUDA 10.0 Cudnn 7.5.0 gcc 7.3 when i make the caffe-faster-rcnn, i get the problem CXX/LD -o .build_release/tools/upgrade_net_proto_binary.bin CXX/LD -o .build_release/tools/upgrade_net_proto_text.bin CXX/LD -o .build_release/tools/finetune_net.bin CXX/LD -o .build_release/tools/caffe.bin .build_release/lib/libcaffe.so:对‘__cudaPushCallConfiguration’未定义的引用 .build_release/lib/libcaffe.so:对‘__cudaPopCallConfiguration’未定义的引用...
Is there deploy.prototxt availble for download or coco_vgg16_faster_rcnn_final.caffemodel? Thanks!
Does increasing the number of scales and ratios help the RPN become better? Thank you!
On win10 systems,setup. is split into two,the following error occured after i enter the "python setup_cuda.py install" command E:\Users\17829\Faster-RCNN-TensorFlow-Python3\lib>python setup_cuda.py install running install running bdist_egg running egg_info creating py_fast_rcnn_gpu.egg-info writing...
https://github.com/rbgirshick/py-faster-rcnn/blob/master/lib/rpn/anchor_target_layer.py Line 137 138 140 gt_argmax_overlaps = overlaps.argmax(axis=0) gt_max_overlaps = overlaps[gt_argmax_overlaps,np.arange(overlaps.shape[1])] gt_argmax_overlaps = np.where(overlaps == gt_max_overlaps)[0] line 137 and line 138 equivalent to gt_max_overlaps = overlaps.max(axis=0) And when the 140th...
Hi I was training model on my own dataset. I am facing error ValueError: could not broadcast input array from shape (4) into shape (0) and this occurs after iteration...
Hi! After did the basic installation, when I ran the demo.py code, I got the check error. F1210 08:16:15.441911 10686 layer_factory.hpp:80] Check failed: registry.count(type) == 1 (0 vs. 1) Unknown...
Thanks for your code. I encountered this problem when I use .\tools\test_net.py. The error it showed was in the line 25 in .lib\utils\nms.pyx. I replaced int_t with intp_t, int64_t and...
There are so many issues with running the CPU mode (#272, #564 and so on). I suffered the same problems, so I decided to do a docker image for it....