File: holder2d.man

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (76 lines) | stat: -rw-r--r-- 2,413 bytes parent folder | download
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.TH "holder2d" 2 " 17 June 1997" "Fractales Group" "Scilab Function"
.so ../sci.an
.SH NAME
holder2d - holder exponents of a measures defined on 2D real signal
.sp
Author: Pascal Mignot - Bertrand Guiheneuf
.sp
This routine computes \fIholder exponents\fP of a measures defined on 2D real signal. Several measures and capacities are available.
.sp
.sp
.SH Usage
\f(CR[\fPholder\f(CR]\fP=holder2d(Input,\f(CR[\fPMeas\f(CR]\fP,\f(CR[\fPRes\f(CR]\fP,\f(CR[\fPRef\f(CR]\fP,\f(CR[\fPRefMeas\f(CR]\fP)
.SH Input parameters


.RS

.TP
o 
\fBInput\fP : real matrix \f(CR[\fPm,n\f(CR]\fP  
Contains the signal to be analysed. 

.TP
o 
\fBMeas\fP : string 
Analysing measure. Must choosen be in  
{"sum", "var", "ecart", "min", "max", "iso", "riso",  
"asym", "aplat", "contrast", "lognorm", "varlog", "rho",  
"pow", "logpow", "frontmax", "frontmin", "diffh", "diffv",  
"diffmin", "diffmax"} 
(default : "sum")

.TP
o 
\fBres\fP : 
Number of resolutions used for the computation. (default : 1)

.TP
o 
\fBRef\fP : real matrix \f(CR[\fPm,n\f(CR]\fP  
Contains the reference signal i.e. the signal on which the reference measure
will be computed. 
Input and Ref must have the same dimensions. 

.TP
o 
\fBRefMeas\fP : string 
Reference measure. (default : "sum")
.RE

.SH Output parameters


.RS

.TP
o 
\fBholder\fP : real matrix \f(CR[\fPm,n\f(CR]\fP
Contains the Holder exponents. 
.RE

.SH Description
.SH Introduction 
This routines computes holder exponents by regressing an analysing measure (in a log-log plot) at different scales. 
Given a pixel, one defines a (square) window around it. The window size is called the resolution.
The specified measure (or capacity) is then evaluated on the set defined by the window.
For example, in the case of the "sum" measure, at resolution 2, a 5x5 square center on a pixel p0 is 
extracted from the input image. The mean of the gray levels of the obtained pixels defines the measure 
at pixel p0 and resolution 2.
The measure type is thus given by the input parameter \fIMeas\fP whereas the actual measure is obtained through the
input signal.
In the case of a simple measure analysis, the regression is computed with respect to the size of the window, this
corresponds to comparing the analysing measure to  the Lebesgue measure.
Nevertheless, it is possible to compute the regression by comparison with a reference measure given by the
last two parameters.  
.SH See Also