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
I have setup of caffe-gpu docker image which is working fine. Could somebody help me to setup this repo using caffe-gpu docker setup. I downloaded this repo and tried to...
``` root@5b1e58e4ea08:~/.cache/Detect/py-faster-rcnn/caffe-fast-rcnn# make PROTOC src/caffe/proto/caffe.proto make: protoc: Command not found Makefile:620: recipe for target '.build_release/src/caffe/proto/caffe.pb.cc' failed make: *** [.build_release/src/caffe/proto/caffe.pb.cc] Error 127 ```
关于faster rcnn,可加群857449786 注明(faster rcnn)共同学习,谢谢 已经解决了win10下关于faster rcnn下训练自己数据集的问题,如有不了解的,可以交流
Hi, I have noticed faster rcnn does not have hard negative example mining. I would like to add this feature to the current code, but I do not know which...
Hi im using Ubuntu 16.04, Python 2.7.12 Cuda 10 and Cudnn 7., and protoc version 3.11 ibprotoc 3.11.4. and protobuf 3. 11.4. as well. I followed the Ubuntu 16 Installation...
Hello, i am struggling with the problem of obtaining coordinates as an output of the network. I do not fully understand the meaning of an output. I am getting "bbox_pred"...
``` def bbox_transform_inv(boxes, deltas): if boxes.shape[0] == 0: return np.zeros((0, deltas.shape[1]), dtype=deltas.dtype) boxes = boxes.astype(deltas.dtype, copy=False) widths = boxes[:, 2] - boxes[:, 0] + 1.0 heights = boxes[:, 3] -...
Hello Im using Ubuntu 16.04, Python 2.7.12 Cuda 10 and Cudnn 7., and protoc version 3.11 ibprotoc 3.11.4. and protobuf 3. 11.4. as well. I followed the Ubuntu 16 Installation...
How do I modify the feature extraction network to fuse data sets from different sources? The case is shown below: 
Traceback (most recent call last): File "./tools/trainval_net.py", line 139, in max_iters=args.max_iters) File "/root/TensorFlow-Model/tf-faster-rcnn-master/tools/../lib/model/train_val.py", line 377, in train_net sw.train_model(sess, max_iters) File "/root/TensorFlow-Model/tf-faster-rcnn-master/tools/../lib/model/train_val.py", line 278, in train_model blobs = self.data_layer.forward() File "/root/TensorFlow-Model/tf-faster-rcnn-master/tools/../lib/roi_data_layer/layer.py",...