You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ By default, Fred will automatically determine the number of threads to use. If y
38
38
39
39
### Curve Simplification
40
40
41
+
All simplifications are vertex-restricted!
42
+
41
43
#### weak minimum error simplification
42
44
- graph approach from [**Polygonal Approximations of a Curve — Formulations and Algorithms**](https://www.sciencedirect.com/science/article/pii/B9780444704672500114)
43
45
- signature: `fred.weak_minimum_error_simplification(fred.Curve, int complexity)`
@@ -65,8 +67,8 @@ A `fred.Distance_Matrix()` can be used to speed up consecutive calls of `fred.di
65
67
-`k`: number of centers
66
68
-`l`: maximum complexity of the centers, only used when center_domain is default value
67
69
-`distances`: `fred.Distance_Matrix`, defaults to empty `fred.Distance_Matrix`
68
-
-`center_domain`: possible centers, defaults to empty `fred.Curves()`, in this case the input is simplified and used as center domain
69
70
-`random_first_center`: determines if first center is chosen uniformly at random or first curve is used as first center, optional, defaults to true
71
+
-`fast_simplification`: determines whether to use the weak minimum error simplification or the faster approximate weak minimum error simplification, defaults to false
70
72
- returns: `fred.Clustering_Result` with mebers
71
73
-`value`: objective value
72
74
-`time`: running-time
@@ -78,7 +80,7 @@ A `fred.Distance_Matrix()` can be used to speed up consecutive calls of `fred.di
78
80
-`k`: number of centers
79
81
-`l`: maximum complexity of the centers, only used when center_domain is default value
80
82
-`distances`: `fred.Distance_Matrix`, defaults to empty `fred.Distance_Matrix`
81
-
-`center_domain`: possible centers, optional parameter, if not given the input is simplified and used as center domain
83
+
-`fast_simplification`: determines whether to use the weak minimum error simplification or the faster approximate weak minimum error simplification, defaults to false
0 commit comments