All Projects → zhanglaplace → Faster_rcnn_Cplusplus_vs2013

zhanglaplace / Faster_rcnn_Cplusplus_vs2013

Licence: other
faster-rcnn_VS2013with C++

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to Faster rcnn Cplusplus vs2013

faster-rcnn-pedestrian-detection
Faster R-CNN for pedestrian detection
Stars: ✭ 31 (-59.74%)
Mutual labels:  caffe, faster-rcnn
Unreal caffe
Self Maintained Caffe. In this version Faster-RCNN, RFCN needs layer are fully supported!
Stars: ✭ 38 (-50.65%)
Mutual labels:  caffe, faster-rcnn
Faster Rcnn Cplusplus2
faster-rcnn c++ python model
Stars: ✭ 14 (-81.82%)
Mutual labels:  caffe, faster-rcnn
Caffe Model
Caffe models (including classification, detection and segmentation) and deploy files for famouse networks
Stars: ✭ 1,258 (+1533.77%)
Mutual labels:  caffe, faster-rcnn
Bottom Up Attention
Bottom-up attention model for image captioning and VQA, based on Faster R-CNN and Visual Genome
Stars: ✭ 989 (+1184.42%)
Mutual labels:  caffe, faster-rcnn
Py Rfcn Priv
code for py-R-FCN-multiGPU maintained by bupt-priv
Stars: ✭ 153 (+98.7%)
Mutual labels:  caffe, faster-rcnn
facial-landmarks
Facial landmarks detection with OpenCV, Dlib, DNN
Stars: ✭ 25 (-67.53%)
Mutual labels:  caffe
caffe-mobilenet-v3
Caffe Implementation of MobileNets V3
Stars: ✭ 127 (+64.94%)
Mutual labels:  caffe
object-tracking
Multiple Object Tracking System in Keras + (Detection Network - YOLO)
Stars: ✭ 89 (+15.58%)
Mutual labels:  faster-rcnn
nsfw api
Python REST API to detect images with adult content
Stars: ✭ 71 (-7.79%)
Mutual labels:  caffe
vqa-soft
Accompanying code for "A Simple Loss Function for Improving the Convergence and Accuracy of Visual Question Answering Models" CVPR 2017 VQA workshop paper.
Stars: ✭ 14 (-81.82%)
Mutual labels:  caffe
CFUN
Combining Faster R-CNN and U-net for efficient medical image segmentation
Stars: ✭ 109 (+41.56%)
Mutual labels:  faster-rcnn
dd performances
DeepDetect performance sheet
Stars: ✭ 92 (+19.48%)
Mutual labels:  caffe
ddrl
Deep Developmental Reinforcement Learning
Stars: ✭ 27 (-64.94%)
Mutual labels:  caffe
nettutorial
Deep learning tutorial
Stars: ✭ 27 (-64.94%)
Mutual labels:  caffe
caffe
Caffe: a Fast framework for deep learning. Custom version with built-in sparse inputs, segmentation, object detection, class weights, and custom layers
Stars: ✭ 36 (-53.25%)
Mutual labels:  caffe
TensorRT-LPR
车牌识别,基于HyperLPR实现,修改模型调用方法,使用caffe+tensorRT实现GPU加速,修改了车牌检测模型
Stars: ✭ 14 (-81.82%)
Mutual labels:  caffe
DLInfBench
CNN model inference benchmarks for some popular deep learning frameworks
Stars: ✭ 51 (-33.77%)
Mutual labels:  caffe
darknet2caffe
Conversion of yolo from DarkNet to Caffe
Stars: ✭ 25 (-67.53%)
Mutual labels:  caffe
pytorch-faster-rcnn
No description or website provided.
Stars: ✭ 45 (-41.56%)
Mutual labels:  faster-rcnn

Faster-Rcnn-cplusplus

Faster-rcnn cplusplus in windows with visual studio 2013 the project is according to the http://blog.csdn.net/oYangZi12/article/details/53290426?locationNum=5&fps=1

 you can test with python model according https://github.com/zhanglaplace/faster-rcnn-cplusplus2

Platform

You need a VC compiler to build these project, Visual Studio 2013 Community should be fine. You can download from https://www.visualstudio.com/downloads/.

Caffe

i use the Microsoft version , https://github.com/Microsoft/caffe . if you want to use the faster-rcnn you need to add some others file to libcaffe project , in fact ,i add all of the head file in /include/caffe/ and all of the source file and cu file in /src/caffe/ to libcaffe project and rebuild it;Specifically,See: http://www.cnblogs.com/LaplaceAkuir/p/6445189.html

Result

it's a little different from the matlab version .and it cost much time.

In My compute(GTX760 GPU) a picture of size(375*500*3)cost 246ms . image image image image image

Mean_images

mean_images is converte from the model.mat in matlab . you can save the mean_image by command imwrite(uint8(proposal_detection_model.image_means),'mean_image.bmp') or load the model.mat and save it.

Faster-RCNN Model

We choose the matlab model file and the prototxt file. in matlab ,faster-rcnn divided into two parts, rpn_net and faster-rcnn_net;thus there are two models and two prototxt files in matlab;these project is just a test demo,if you want to train your own model , prehaps you need do it on matlab-faster-rcnn. and put the model in these project,you can download the model:http://pan.baidu.com/s/1dF88JvV

Caffe-3rdparty

i have sorted out the thrid party depenendent library files in faster_3rdparty,http://pan.baidu.com/s/1qYttnsS password:d0ud,it is a release version , you can put it in the caffe-master folder. and we should create a new porject to test faster-rcnn in caffe-master/windows/folder.As you can see, you can compile the project directly. What you need to do is only change some necessary paths. All the code has been tested and the test results are also included.

Something else

if you want to test the project using your own model ,please modify the classNum to your class number and each class' name in caffe_net.cpp. finally,wish it can help you .if it's helpful to you ,please give me a star thanks~

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].