登录
首页 » Python » py-faster-rcnn-master

py-faster-rcnn-master

于 2020-12-11 发布 文件大小:654KB
0 137
下载积分: 1 下载次数: 14

代码说明:

  图像检测的算法,Faster R-CNN算法,先对整张图像进行卷积计算,然后通过感兴趣区域池化层(RoI Pooling Layer)将选择性搜索算法推荐出来的候选区域和卷积网络计算出的特征映射图进行融合,得到候选区域对应的特征矢量,这种共享卷积计算的操作极大地减少了卷积计算的次数。而且这些特征矢量的维度统一,方便后续的分类工作。通过感兴趣区域池化层处理卷积特征,并将得到的特征送往两个并行计算任务进行训练,分类和定位回归。通过这些方法和改进的框架,Fast R-CNN 用更短的训练和测试时长,取得了比 R-CNN 更好的效果(Faster R-CNN algorithm first convolutes the whole image, then fuses the candidate regions recommended by the selective search algorithm and the feature mapping maps calculated by the convolution network through the RoI Pooling Layer to get the corresponding feature vectors of the candidate regions, which greatly reduces the number of convolution calculations. Moreover, the dimension of these feature vectors is unified, which facilitates the subsequent classification work. The convolution feature is processed by the pooling layer of the region of interest, and the obtained feature is sent to two parallel computing tasks for training, classification and positioning regression. Through these methods and improved framework, Fast R-CNN uses shorter training and testing time and achieves better results than R-CNN.)

文件列表:

py-faster-rcnn-master\.gitignore, 84 , 2018-12-17
py-faster-rcnn-master\.gitmodules, 131 , 2018-12-17
py-faster-rcnn-master\data\.gitignore, 70 , 2018-12-17
py-faster-rcnn-master\data\demo\000456.jpg, 105302 , 2018-12-17
py-faster-rcnn-master\data\demo\000542.jpg, 115536 , 2018-12-17
py-faster-rcnn-master\data\demo\001150.jpg, 88635 , 2018-12-17
py-faster-rcnn-master\data\demo\001763.jpg, 73424 , 2018-12-17
py-faster-rcnn-master\data\demo\004545.jpg, 123072 , 2018-12-17
py-faster-rcnn-master\data\pylintrc, 56 , 2018-12-17
py-faster-rcnn-master\data\README.md, 2516 , 2018-12-17
py-faster-rcnn-master\data\scripts\fetch_faster_rcnn_models.sh, 842 , 2018-12-17
py-faster-rcnn-master\data\scripts\fetch_imagenet_models.sh, 825 , 2018-12-17
py-faster-rcnn-master\data\scripts\fetch_selective_search_data.sh, 858 , 2018-12-17
py-faster-rcnn-master\experiments\cfgs\faster_rcnn_alt_opt.yml, 78 , 2018-12-17
py-faster-rcnn-master\experiments\cfgs\faster_rcnn_end2end.yml, 227 , 2018-12-17
py-faster-rcnn-master\experiments\logs\.gitignore, 7 , 2018-12-17
py-faster-rcnn-master\experiments\README.md, 185 , 2018-12-17
py-faster-rcnn-master\experiments\scripts\faster_rcnn_alt_opt.sh, 1509 , 2018-12-17
py-faster-rcnn-master\experiments\scripts\faster_rcnn_end2end.sh, 1781 , 2018-12-17
py-faster-rcnn-master\experiments\scripts\fast_rcnn.sh, 1448 , 2018-12-17
py-faster-rcnn-master\lib\datasets\coco.py, 16560 , 2018-12-17
py-faster-rcnn-master\lib\datasets\ds_utils.py, 1336 , 2018-12-17
py-faster-rcnn-master\lib\datasets\factory.py, 1403 , 2018-12-17
py-faster-rcnn-master\lib\datasets\imdb.py, 9811 , 2018-12-17
py-faster-rcnn-master\lib\datasets\pascal_voc.py, 14217 , 2018-12-17
py-faster-rcnn-master\lib\datasets\tools\mcg_munge.py, 1451 , 2018-12-17
py-faster-rcnn-master\lib\datasets\VOCdevkit-matlab-wrapper\get_voc_opts.m, 231 , 2018-12-17
py-faster-rcnn-master\lib\datasets\VOCdevkit-matlab-wrapper\voc_eval.m, 1332 , 2018-12-17
py-faster-rcnn-master\lib\datasets\VOCdevkit-matlab-wrapper\xVOCap.m, 258 , 2018-12-17
py-faster-rcnn-master\lib\datasets\voc_eval.py, 6938 , 2018-12-17
py-faster-rcnn-master\lib\datasets\__init__.py, 248 , 2018-12-17
py-faster-rcnn-master\lib\fast_rcnn\bbox_transform.py, 2540 , 2018-12-17
py-faster-rcnn-master\lib\fast_rcnn\config.py, 9213 , 2018-12-17
py-faster-rcnn-master\lib\fast_rcnn\nms_wrapper.py, 642 , 2018-12-17
py-faster-rcnn-master\lib\fast_rcnn\test.py, 11120 , 2018-12-17
py-faster-rcnn-master\lib\fast_rcnn\train.py, 6076 , 2018-12-17
py-faster-rcnn-master\lib\fast_rcnn\__init__.py, 248 , 2018-12-17
py-faster-rcnn-master\lib\Makefile, 56 , 2018-12-17
py-faster-rcnn-master\lib\nms\.gitignore, 15 , 2018-12-17
py-faster-rcnn-master\lib\nms\cpu_nms.pyx, 2241 , 2018-12-17
py-faster-rcnn-master\lib\nms\gpu_nms.hpp, 146 , 2018-12-17
py-faster-rcnn-master\lib\nms\gpu_nms.pyx, 1110 , 2018-12-17
py-faster-rcnn-master\lib\nms\nms_kernel.cu, 5064 , 2018-12-17
py-faster-rcnn-master\lib\nms\py_cpu_nms.py, 1051 , 2018-12-17
py-faster-rcnn-master\lib\nms\__init__.py, 0 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\coco.py, 14881 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\cocoeval.py, 19735 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\license.txt, 1533 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\mask.py, 4058 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\maskApi.c, 7704 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\maskApi.h, 1928 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\UPSTREAM_REV, 80 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\_mask.pyx, 10709 , 2018-12-17
py-faster-rcnn-master\lib\pycocotools\__init__.py, 21 , 2018-12-17
py-faster-rcnn-master\lib\roi_data_layer\layer.py, 7450 , 2018-12-17
py-faster-rcnn-master\lib\roi_data_layer\minibatch.py, 8169 , 2018-12-17
py-faster-rcnn-master\lib\roi_data_layer\roidb.py, 5611 , 2018-12-17
py-faster-rcnn-master\lib\roi_data_layer\__init__.py, 248 , 2018-12-17
py-faster-rcnn-master\lib\rpn\anchor_target_layer.py, 11344 , 2018-12-17
py-faster-rcnn-master\lib\rpn\generate.py, 3894 , 2018-12-17
py-faster-rcnn-master\lib\rpn\generate_anchors.py, 3110 , 2018-12-17
py-faster-rcnn-master\lib\rpn\proposal_layer.py, 6803 , 2018-12-17
py-faster-rcnn-master\lib\rpn\proposal_target_layer.py, 7495 , 2018-12-17
py-faster-rcnn-master\lib\rpn\README.md, 780 , 2018-12-17
py-faster-rcnn-master\lib\rpn\__init__.py, 262 , 2018-12-17
py-faster-rcnn-master\lib\setup.py, 5665 , 2018-12-17
py-faster-rcnn-master\lib\transform\torch_image_transform_layer.py, 2000 , 2018-12-17
py-faster-rcnn-master\lib\transform\__init__.py, 0 , 2018-12-17
py-faster-rcnn-master\lib\utils\.gitignore, 9 , 2018-12-17
py-faster-rcnn-master\lib\utils\bbox.pyx, 1756 , 2018-12-17
py-faster-rcnn-master\lib\utils\blob.py, 1625 , 2018-12-17
py-faster-rcnn-master\lib\utils\timer.py, 948 , 2018-12-17
py-faster-rcnn-master\lib\utils\__init__.py, 248 , 2018-12-17
py-faster-rcnn-master\LICENSE, 3745 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG16\faster_rcnn_end2end\solver.prototxt, 387 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG16\faster_rcnn_end2end\test.prototxt, 8754 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG16\faster_rcnn_end2end\train.prototxt, 9840 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG16\fast_rcnn\solver.prototxt, 395 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG16\fast_rcnn\test.prototxt, 6774 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG16\fast_rcnn\train.prototxt, 6625 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG_CNN_M_1024\faster_rcnn_end2end\solver.prototxt, 392 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG_CNN_M_1024\faster_rcnn_end2end\test.prototxt, 6973 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG_CNN_M_1024\faster_rcnn_end2end\train(1).prototxt, 7282 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG_CNN_M_1024\fast_rcnn\solver.prototxt, 398 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG_CNN_M_1024\fast_rcnn\test.prototxt, 4037 , 2018-12-17
py-faster-rcnn-master\models\coco\VGG_CNN_M_1024\fast_rcnn\train.prototxt, 4051 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\faster_rcnn_test.pt, 6263 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\rpn_test.pt, 5305 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage1_fast_rcnn_solver30k40k.pt, 390 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage1_fast_rcnn_train.pt, 8241 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage1_rpn_solver60k80k.pt, 378 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage1_rpn_train.pt, 8062 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage2_fast_rcnn_solver30k40k.pt, 390 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage2_fast_rcnn_train.pt, 8337 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage2_rpn_solver60k80k.pt, 378 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_alt_opt\stage2_rpn_train.pt, 8126 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_end2end\solver.prototxt, 407 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_end2end\test.prototxt, 8945 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\faster_rcnn_end2end\train.prototxt, 10209 , 2018-12-17
py-faster-rcnn-master\models\pascal_voc\VGG16\fast_rcnn\solver.prototxt, 400 , 2018-12-17

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • insar-toolbox
    这个是INSAR图像处理的matlab工具箱,里面包含了很多有用的函数,对我们非常有帮助。(This is the INSAR image processing toolbox, which contains many useful functions, very helpful to us.)
    2020-10-22 15:17:23下载
    积分:1
  • xiaobobianhuan
    利用小波变化实现对不同灰度图像的边缘检测(Changes implemented using wavelet different gray-scale image edge detection)
    2013-06-12 22:01:49下载
    积分:1
  • GA-FCM
    遗传算法+FCM 用于SAR图像分类问题中,讲图分为两类或者三类~~~~~~~~~。(Genetic algorithm is used to SAR+ FCM image classification problem, speak figure divided into two classes or three kinds of ~ ~ ~ ~ ~ ~ ~ ~ ~.)
    2021-03-17 18:19:21下载
    积分:1
  • image-processing_toolbox
    这是一个图像处理相关的matlab工具包,包含了很多写好的可以直接调用的m文件,非常实用(These MATLAB functions were created for the book Digital Image Processing Using MATLAB, 2nd edition, by R.C. Gonzalez, R.E. Woods, and S.L. Eddins, Gatesmark Publishing, 2009. The functions supplement and extend the image )
    2020-12-16 20:19:12下载
    积分:1
  • Digital-Image-Processing
    数字图像处理第二版中文版(冈萨雷斯)Digital Image Processing(Digital Image Processing 2nd Edition Chinese (Gonzalez))
    2017-03-07 20:56:17下载
    积分:1
  • multi-target-tracking
    多目标跟踪的主程序,包含跟踪起始,数据关联,目标状态估计等过程(The main process of multi-target tracking, including track initiation, data association, target state estimation process)
    2013-06-26 16:26:24下载
    积分:1
  • branch-cut
    干涉合成孔径雷达成像的相位解缠的枝切法程序。(Interferometric synthetic aperture radar imaging of the phase unwrapping process of the branch-cut method.)
    2008-01-15 16:00:59下载
    积分:1
  • CDD
    一种基于CDD的图像修复算法,效果还不错,做图像修复的可以好好看看,还有论文哦 (Based CDD image restoration algorithm, the results were pretty good, do image restoration can be a good look, there are papers Oh)
    2013-01-15 11:56:16下载
    积分:1
  • pathopenings
    形态学pathopenings的实现,对线特征提取等图像处理有令人惊奇的效果。(Morphological pathopenings the realization of the line feature extraction and other image processing have surprising effects.)
    2021-04-12 20:28:56下载
    积分:1
  • 模式识别
    说明:  对局部放电进行小波变换模式识别,解决放电破坏设备问题(Wavelet Transform Pattern Recognition for Partial Discharge)
    2020-06-17 21:40:01下载
    积分:1
  • 696521资源总数
  • 104077会员总数
  • 0今日下载