releaseV301

所属分类:matlab编程
开发工具:matlab
文件大小:22013KB
下载次数:17
上传日期:2014-10-13 14:52:12
上 传 者csunking
说明:  Structured Edge Detection Toolbox
( ################################################################### # # # Structured Edge Detection Toolbox V3.0 # # Piotr Dollar (pdollar-at-microsoft.com) # # # ################################################################### 1. Introduction. Very fast edge detector (up to 60 fps depending on parameter settings) that achieves excellent accuracy. Can serve as input to any vision algorithm requiring high quality edge maps. Toolbox also includes the Edge Boxes object proposal generation method and fast superpixel code. If you use the Structured Edge Detection Toolbox, we appreciate it if you cite an appropriate subset of the following papers: @inproceedings{DollarICCV13edges, author = {Piotr Doll\ ar and C. Lawrence Zitnick}, title = {Structured Forests for Fast Edge Detecti)

文件列表:
release (0, 2014-09-09)
release\boxesData.m (3017, 2014-09-09)
release\boxesEval.m (5226, 2014-09-09)
release\Contents.m (2095, 2014-07-24)
release\edgeBoxes.m (4406, 2014-09-09)
release\edgeBoxesDemo.m (1631, 2014-07-16)
release\edgeBoxesSweeps.m (3242, 2014-09-09)
release\edgesChns.m (1581, 2014-09-09)
release\edgesDemo.m (1227, 2014-06-21)
release\edgesDemoRgbd.m (1636, 2014-06-19)
release\edgesDetect.m (2827, 2014-09-09)
release\edgesEval.m (3283, 2014-09-09)
release\edgesEvalDir.m (5991, 2014-09-09)
release\edgesEvalImg.m (3884, 2014-09-09)
release\edgesEvalPlot.m (2660, 2014-09-09)
release\edgesSweeps.m (8831, 2014-09-09)
release\edgesTrain.m (13669, 2014-09-09)
release\license.txt (6259, 2013-11-13)
release\models (0, 2014-09-09)
release\models\forest (0, 2014-09-09)
release\models\forest\modelBsds.mat (22640640, 2014-06-15)
release\private (0, 2014-09-09)
release\private\correspondPixels.mexa64 (112617, 2014-02-02)
release\private\correspondPixels.mexw64 (32256, 2014-02-02)
release\private\edgeBoxesMex.cpp (18456, 2014-09-09)
release\private\edgeBoxesMex.mexa64 (62493, 2014-07-15)
release\private\edgeBoxesMex.mexw64 (43520, 2014-07-15)
release\private\edgesDetectMex.cpp (9144, 2014-09-09)
release\private\edgesDetectMex.mexa64 (16614, 2014-06-15)
release\private\edgesDetectMex.mexw64 (17408, 2014-06-19)
release\private\edgesNmsMex.cpp (2363, 2014-09-09)
release\private\edgesNmsMex.mexa64 (9561, 2014-07-24)
release\private\edgesNmsMex.mexw64 (8704, 2014-07-09)
release\private\spDetectMex.cpp (15104, 2014-09-09)
release\private\spDetectMex.mexa64 (23125, 2014-09-09)
release\private\spDetectMex.mexw64 (25600, 2014-09-09)
release\private\ucm_mean_pb.mexa64 (23735, 2014-07-23)
release\private\ucm_mean_pb.mexw64 (32256, 2014-02-17)
release\spAffinities.m (4319, 2014-09-09)
... ...

################################################################### # # # Structured Edge Detection Toolbox V3.0 # # Piotr Dollar (pdollar-at-microsoft.com) # # # ################################################################### 1. Introduction. Very fast edge detector (up to 60 fps depending on parameter settings) that achieves excellent accuracy. Can serve as input to any vision algorithm requiring high quality edge maps. Toolbox also includes the Edge Boxes object proposal generation method and fast superpixel code. If you use the Structured Edge Detection Toolbox, we appreciate it if you cite an appropriate subset of the following papers: @inproceedings{DollarICCV13edges, author = {Piotr Doll\'ar and C. Lawrence Zitnick}, title = {Structured Forests for Fast Edge Detection}, booktitle = {ICCV}, year = {2013}, } @article{DollarARXIV14edges, author = {Piotr Doll\'ar and C. Lawrence Zitnick}, title = {Fast Edge Detection Using Structured Forests}, journal = {ArXiv}, year = {2014}, } @inproceedings{ZitnickECCV14edgeBoxes, author = {C. Lawrence Zitnick and Piotr Doll\'ar}, title = {Edge Boxes: Locating Object Proposals from Edges}, booktitle = {ECCV}, year = {2014}, } ################################################################### 2. License. This code is published under the MSR-LA Full Rights License. Please read license.txt for more info. ################################################################### 3. Installation. a) This code is written for the Matlab interpreter (tested with versions R2013a-2013b) and requires the Matlab Image Processing Toolbox. b) Additionally, Piotr's Matlab Toolbox (version 3.26 or later) is also required. It can be downloaded at: http://vision.ucsd.edu/~pdollar/toolbox/doc/index.html. c) Next, please compile mex code from within Matlab (note: win***/linux*** binaries included): mex private/edgesDetectMex.cpp -outdir private [OMPPARAMS] mex private/edgesNmsMex.cpp -outdir private [OMPPARAMS] mex private/spDetectMex.cpp -outdir private [OMPPARAMS] mex private/edgeBoxesMex.cpp -outdir private Here [OMPPARAMS] are parameters for OpenMP and are OS and compiler dependent. Windows: [OMPPARAMS] = '-DUSEOMP' 'OPTIMFLAGS="$OPTIMFLAGS' '/openmp"' Linux V1: [OMPPARAMS] = '-DUSEOMP' CFLAGS="\$CFLAGS -fopenmp" LDFLAGS="\$LDFLAGS -fopenmp" Linux V2: [OMPPARAMS] = '-DUSEOMP' CXXFLAGS="\$CXXFLAGS -fopenmp" LDFLAGS="\$LDFLAGS -fopenmp" To compile without OpenMP simply omit [OMPPARAMS]; note that code will be single threaded in this case. d) Add edge detection code to Matlab path (change to current directory first): >> addpath(pwd); savepath; e) Finally, optionally download the BSDS500 dataset (necessary for training/evaluation): http://www.eecs.berkeley.edu/Research/Projects/CS/vision/grouping/ After downloading BSR/ should contain BSDS500, bench, and documentation. f) A fully trained edge model for RGB images is available as part of this release. Additional models are available online, including RGBD/D/RGB models trained on the NYU depth dataset and a larger more accurate BSDS model. ################################################################### 4. Getting Started. - Make sure to carefully follow the installation instructions above. - Please see "edgesDemo.m", "edgeBoxesDemo" and "spDemo.m" to run demos and get basic usage information. - For a detailed list of functionality see "Contents.m". ################################################################### 5. History. Version 3.01 (09/08/2014) - spAffinities: minor fix (memory initialization) - edgesDetect: minor fix (multiscale / multiple output case) Version 3.0 (07/23/2014) - added Edge Boxes code corresponding to ECCV paper - added Sticky Superpixels code - edge detection code unchanged Version 2.0 (06/20/2014) - second version corresponding to arXiv paper - added sharpening option - added evaluation and visualization code - added NYUD demo and sweep support - various tweaks/improvements/optimizations Version 1.0 (11/12/2013) - initial version corresponding to ICCV paper ###################################################################

近期下载者

相关文件


收藏者