-
Notifications
You must be signed in to change notification settings - Fork 363
/
Contents.m
40 lines (40 loc) · 2.01 KB
/
Contents.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
% EDGES
% See also readme.txt
%
% Fast edge detector code is based on the paper:
% P. Dollár and C. Zitnick
% "Structured Forests for Fast Edge Detection", ICCV 2013.
% Please cite the above paper if you end up using the edge detector.
%
% Edge Boxes object proposal generation is based on the paper:
% C. Zitnick and P. Dollár
% "Edge Boxes: Locating Object Proposals from Edges", ECCV 2014.
% Please cite the above paper if you end up using the object proposals.
%
% Structured Edge detector code:
% edgesChns - Compute features for structured edge detection.
% edgesDemo - Demo for Structured Edge Detector (please see readme.txt first).
% edgesDemoRgbd - Demo for RGBD Structured Edge Detector (please see readme.txt first).
% edgesDetect - Detect edges in image.
% edgesSweeps - Parameter sweeps for structured edge detector.
% edgesTrain - Train structured edge detector.
%
% Edge detection evaluation code:
% edgesEval - Run and evaluate structured edge detector on BSDS500.
% edgesEvalDir - Calculate edge precision/recall results for directory of edge images.
% edgesEvalImg - Calculate edge precision/recall results for single edge image.
% edgesEvalPlot - Plot edge precision/recall results for directory of edge images.
%
% Edge Boxes object proposal generation code:
% edgeBoxes - Generate Edge Boxes object proposals in given image(s).
% edgeBoxesDemo - Demo for Edge Boxes (please see readme.txt first).
% edgeBoxesSweeps - Parameter sweeps for Edges Boxes object proposals.
%
% Object proposal evaluation code:
% boxesData - Get ground truth data for object proposal bounding box evaluation.
% boxesEval - Perform object proposal bounding box evaluation and plot results.
%
% Sticky Edge Adhesive Superpixel code:
% spDemo - Demo for Sticky Superpixels (please see readme.txt first).
% spDetect - Detect Sticky Superpixels in image.
% spAffinities - Compute superpixel affinities and optionally corresponding edge map.