py-faster-rcnn icon indicating copy to clipboard operation
py-faster-rcnn copied to clipboard

Faster R-CNN (Python implementation) -- see https://github.com/ShaoqingRen/faster_rcnn for the official MATLAB version

Results 105 py-faster-rcnn issues
Sort by recently updated
recently updated
newest added

Some background, in case I imposed the problem on myself through some improper setup: I'm training a very small dataset of 11 classes over 62 images. I used [labelImg](https://github.com/tzutalin/labelImg) to...

I am training to use faster rcnn on my own dataset. After changing pascal_voc.py, factory.py and the models to use the right amount of classes, caffe doesn't give any errors...

I used VGG16 end2end algorithm in py-faster-rcnn to train a model. I am trying to get the test scores using the following command. caffe test -model -weights -gpu 0 -iterations...

Hi I have images from the construction field and would like to detect objects such as: workers, vehicles, blocks, scaffolding, tools. A part of that would like to get spatial...

The pre-train model provided here is based on the VOC2007 trainval dataset. I am wondering is there any pre-train weights using both COCO and VOC dataset?

Should I use `coco_vgg16_faster_rcnn_final.caffemodel` from: `wget www.cs.berkeley.edu/~rbg/faster-rcnn-data/coco_vgg16_faster_rcnn_final.caffemodel` or should I use the .caffemodel in data/imagenet_models? ``` mona@pascal:~/computer_vision/py-faster-rcnn/data/imagenet_models$ ls VGG16.v2.caffemodel VGG_CNN_M_1024.v2.caffemodel ZF.v2.caffemodel ``` What's the difference and should I stick to...

dear all i try to implement faster r cnn in CPU mode. actually, faster r cnn officially doesnt provide training in CPU mode. so, i made changes: - **roi_pooling_layer.cpp** -->conversion...

Hi all: I would like to train py-faster-rcnn on my own dataset, but what is exactly the data format? i.e. the images, annotations, train, val? Can anyone post an example...

i have this error: Traceback (most recent call last): File "abcd_contour.py", line 32, in letter = im[y:y+h,x:x+w] TypeError: slice indices must be integers or None or have an __index__ method...

when i try to train the faster rcnn model with mobilenetv1 as it's backbone, i found the rpn can find anchor_target correctly,i saved the anchor target imgs, but the rcnn...