-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathedge.html
287 lines (259 loc) · 7.91 KB
/
edge.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<html>
<head>
<title>
EDGE - Edge Detection
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
EDGE <br> Edge Detection
</h1>
<hr>
<p>
<b>EDGE</b>
is a MATLAB library which
defines some test functions in 1D, 2D and 3D for the detection of edges.
</p>
<p>
In particular, we look at some simple functional examples in 1D,
2D, and 3D, that is, situations in which a formula is supplied so
that the value of a scalar quantity f() can be determined at any
point in the region. We are interested in examples in which the
quantity f() exhibits jumps. that is, sudden, sharp changes in value.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>EDGE</b> is available in
<a href = "../../c_src/edge/edge.html">a C version</a> and
<a href = "../../cpp_src/edge/edge.html">a C++ version</a> and
<a href = "../../f77_src/edge/edge.html">a FORTRAN77 version</a> and
<a href = "../../f_src/edge/edge.html">a FORTRAN90 version</a> and
<a href = "../../m_src/edge/edge.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../m_src/hypersphere_surface/hypersphere_surface.html">
HYPERSPHERE_SURFACE</a>,
a MATLAB library which
illustrates a procedure for estimating the location of a hypersurface
defined by a characteristic function or a signed function.
</p>
<p>
<a href = "../../m_src/image_edge/image_edge.html">
IMAGE_EDGE</a>,
a MATLAB library which
demonstrates a simple procedure for edge detection in images.
</p>
<p>
<a href = "../../m_src/shoreline/shoreline.html">
SHORELINE</a>,
a MATLAB program which
tries to identify and triangulate the 2D domain over which some
function f(x,y) is nonnegative.
</p>
<p>
<a href = "../../m_src/shoreline2/shoreline2.html">
SHORELINE2</a>,
a MATLAB program which
tries to identify and triangulate the 2D domain over which some
function f(x,y) is approximately zero.
</p>
<h3 align = "center">
Reference:
</h3>
<p>
<ul>
<li>
Rick Archibald, Anne Gelb, Jungho Yoon,<br>
Polynomial fitting for edge detection in irregularly sampled signals
and images,<br>
SIAM Journal on Numerical Analysis,<br>
Volume 43, Number 1, 2006, pages 259-279.
</li>
<li>
Rick Archibald, Anne Gelb, Jungho Yoon,<br>
Determining the location of discontinuities in the derivatives
of functions,<br>
Applied Numerical Mathematics,<br>
Volume 58, 2008, pages 577-592.
</li>
<li>
Larry Shepp, Ben Logan,<br>
The Fourier reconstruction of a head section,<br>
IEEE Transactions on Nuclear Science,<br>
Volume NS-21, June 1974, pages 21-43.
</li>
<li>
Larry Shepp,<br>
Computerized tomography and nuclear magnetic resonance,<br>
Journal of Computer Assisted Tomography,<br>
Volume 4, Number 1, February 1980, pages 94-107.
</li>
</ul>
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "fx1.m">fx1.m</a>,
1D test function #1, a function with a jump discontinuity at 0.
</li>
<li>
<a href = "fx2.m">fx2.m</a>,
1D test function #2.
</li>
<li>
<a href = "fx3.m">fx3.m</a>,
1D test function #3.
</li>
<li>
<a href = "fx4.m">fx4.m</a>,
1D test function #4.
</li>
<li>
<a href = "fx5.m">fx5.m</a>,
1D test function #5.
</li>
<li>
<a href = "fx6.m">fx6.m</a>,
1D test function #6.
</li>
<li>
<a href = "fx7.m">fx7.m</a>,
1D test function #7.
</li>
<li>
<a href = "fxy1.m">fxy1.m</a>,
2D test function #1, discontinuity along a circle.
</li>
<li>
<a href = "fxy2.m">fxy2.m</a>,
2D test function #2, the Shepp-Logan 2D phantom.
</li>
<li>
<a href = "fxy3.m">fxy3.m</a>,
2D test function #3, the 2d modified Harten function.
</li>
<li>
<a href = "fxy4.m">fxy4.m</a>,
2D test function #4, the discontinuous medium wave, P component.
</li>
<li>
<a href = "fxy5.m">fxy5.m</a>,
2D test function #5, the discontinuous medium wave, U component.
</li>
<li>
<a href = "fxyz1.m">fxyz1.m</a>,
3D test function #1, the Shepp-Logan 3D phantom.
</li>
<li>
<a href = "timestamp.m">timestamp.m</a>,
prints the current YMDHMS date as a time stamp.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "edge_test.m">edge_test.m</a>,
calls all the tests.
</li>
<li>
<a href = "edge_test_output.txt">edge_test_output.txt</a>,
the output file.
</li>
<li>
<a href = "edge_test01.m">edge_test01.m</a>,
plots 1D test functions.
</li>
<li>
<a href = "edge_test01.png">edge_test01.png</a>,
plot of 1D test functions.
</li>
<li>
<a href = "edge_test02.m">edge_test02.m</a>,
plots 2D test function #1, jump discontinuity along a circle.
</li>
<li>
<a href = "edge_test02.png">edge_test02.png</a>,
plot of 2D test function #1.
</li>
<li>
<a href = "edge_test03.m">edge_test03.m</a>,
plots 2D test function #2, the Shepp-Logan 2D phantom.
</li>
<li>
<a href = "edge_test03.png">edge_test03.png</a>,
plot of 2D test function #2.
</li>
<li>
<a href = "edge_test035.m">edge_test035.m</a>,
plots 2D test function #3.
</li>
<li>
<a href = "edge_test035.png">edge_test035.png</a>,
plot of 2D test function #3.
</li>
<li>
<a href = "edge_test036.m">edge_test036.m</a>,
plots 2D test function #4.
</li>
<li>
<a href = "edge_test036.png">edge_test035.png</a>,
plot of 2D test function #4.
</li>
<li>
<a href = "edge_test037.m">edge_test037.m</a>,
plots 2D test function #5.
</li>
<li>
<a href = "edge_test037.png">edge_test035.png</a>,
plot of 2D test function #5.
</li>
<li>
<a href = "edge_test04.m">edge_test04.m</a>,
plots 3D test function #1, the Shepp-Logan 3D phantom.
</li>
<li>
<a href = "edge_test04_x.png">edge_test04_x.png</a>,
plot of X slice of 3D test function #1.
</li>
<li>
<a href = "edge_test04_y.png">edge_test04_y.png</a>,
plot of Y slice of 3D test function #1.
</li>
<li>
<a href = "edge_test04_z.png">edge_test04_z.png</a>,
plot of Z slice of 3D test function #1.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../m_src.html">
the MATLAB source codes</a>.
</p>
<hr>
<i>
Last revised on 23 September 2014.
</i>
<!-- John Burkardt -->
</body>
<!-- Initial HTML skeleton created by HTMLINDEX. -->
</html>