source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/vlutil/toolbox/overview_vlutil.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 2.4 KB
Line 
1% OVERVIEW_VLUTIL  VisionLab MATLAB utility programs
2%   This package offers a few versatile functions to manipulate
3%   histograms and images.
4%
5%   * Use BINSUM() to compute the binned sum of an array. Use WHISTC()
6%     to compute a weighted histogram. Use HISTMARG() to marginalize
7%     an histogram. Use HISTNORM() to normalize an histogram.
8%
9%   * Use LOCALMAX() to find points of local maxima in arrays.
10%
11%   * Use IMSMOOTH() to quickly convolve an image by an isotropic
12%     Gaussian kernel. Use IMUP() and IMDOWN() to upsample and
13%     downsample images. Use IMREADGRAY() to read an image and convert
14%     it to grayscale. Use IMSC() to scale an image into the [0,1]
15%     interval.
16%
17%   * Use IMWBACKWARD() to run backward image warping. Use WAFFINE()
18%     to compute an affine warp of points. Use TPS(), TPSU(), WTPS()
19%     and WITPS() to compute a thin-plate-spline warp of points and
20%     its inverse.
21%
22%   * Use RGB2DOUBLE(), RGB2XYZ() and XYZ2RGB(), XYZ2LAB() and
23%     XYZ2LUV() to convert between different formats and color spaces.
24%
25%   * Use PLOTFRAME() to plot points, circles, oriented circles,
26%     ellipses and oriented ellipses in batches.
27%
28%   * Use CLICK(), CLICKPOINT(), CLICKSEGMENT() to interactively
29%     select image points and segments.
30%
31%   * Use CF() to create a copy of a figure. Use IMARRAY() and
32%     IMARRAYSC() to display large arrays of images.
33%
34%   * Use OVERRIDE() to customize default structures by ovverriding
35%     fields recursively.
36%
37%   * Use RODR() and IRODR() to compute Rodrigues' formula and
38%     inverse with derivative. Use HAT() and IHAT() to compute the
39%     hat operator.
40
41% AUTORIGHTS
42% Copyright (C) 2006 Andrea Vedaldi
43%       
44% This file is part of VLUtil.
45%
46% VLUtil is free software; you can redistribute it and/or modify
47% it under the terms of the GNU General Public License as published by
48% the Free Software Foundation; either version 2, or (at your option)
49% any later version.
50%
51% This program is distributed in the hope that it will be useful,
52% but WITHOUT ANY WARRANTY; without even the implied warranty of
53% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
54% GNU General Public License for more details.
55%
56% You should have received a copy of the GNU General Public License
57% along with this program; if not, write to the Free Software Foundation,
58% Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
59
60help overview_vlutil ;
Note: See TracBrowser for help on using the repository browser.