-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
39 lines (25 loc) · 922 Bytes
/
README
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
fct-dilate
Copyright Peter Urban 2010-2013
An implementation of dilation/erosion using (anisotropic) flux corrected transport schemes and different integrators.
Requirements
* Preconfigured for boost-build
type "bjam
Transport Schemes:
* Rouy and Tourin (--method rt)
* Osher and Sethian (--method os)
* Flux Corrected Transpor (--method fct)
Supported structuring elements:
* adaptive structuring elements (--program adaptive_se)
aligns structure element along image edges
* se rotation
* no rotation (--rotation none)
* fixed angle (--rotation fixed ANGLE)
* auto rotation (--rotation auto SIGMA SIGMA_PRE)
* available norms:
* circle (--norm circle equivalent to --norm p 2)
* diamond (--norm diamond equivalent to --norm p 1" but faster)
* custom p-norm (--norm p VALUE)
* elliptic norm (--norm elliptic X Y)
Supported integrators:
* Heun integration (runge kutta)
* euler integration