| Top |
| void | gwy_field_fractal_partitioning () |
| void | gwy_field_fractal_cubecounting () |
| void | gwy_field_fractal_triangulation () |
| void | gwy_field_fractal_psdf () |
| void | gwy_field_fractal_hhcf () |
| gdouble | gwy_field_fractal_cubecounting_dim () |
| gdouble | gwy_field_fractal_triangulation_dim () |
| gdouble | gwy_field_fractal_partitioning_dim () |
| gdouble | gwy_field_fractal_psdf_dim () |
| gdouble | gwy_field_fractal_hhcf_dim () |
| void | gwy_field_fractal_correction () |
| void | gwy_NIELD_fractal_correction () |
void gwy_field_fractal_partitioning (GwyField *field,GwyLine *xresult,GwyLine *yresult,GwyInterpolationType interpolation);
Computes data for log-log plot by partitioning (variance).
Data lines xresult
and yresult
will be resized to the output size and they will contain corresponding values at
each position.
void gwy_field_fractal_cubecounting (GwyField *field,GwyLine *xresult,GwyLine *yresult,GwyInterpolationType interpolation);
Computes data for log-log plot by cube counting.
Data lines xresult
and yresult
will be resized to the output size and they will contain corresponding values at
each position.
void gwy_field_fractal_triangulation (GwyField *field,GwyLine *xresult,GwyLine *yresult,GwyInterpolationType interpolation);
Computes data for log-log plot by triangulation.
Data lines xresult
and yresult
will be resized to the output size and they will contain corresponding values at
each position.
void gwy_field_fractal_psdf (GwyField *field,GwyLine *xresult,GwyLine *yresult,GwyInterpolationType interpolation);
Computes data for log-log plot by spectral density method.
Data lines xresult
and yresult
will be resized to the output size and they will contain corresponding values at
each position.
void gwy_field_fractal_hhcf (GwyField *field,GwyLine *xresult,GwyLine *yresult);
Computes data for log-log plot by structure function (HHCF) method.
Data lines xresult
and yresult
will be resized to the output size and they will contain corresponding values at
each position.
gdouble gwy_field_fractal_cubecounting_dim (GwyLine *xresult,GwyLine *yresult,gdouble *a,gdouble *b);
Computes fractal dimension by cube counting method from log-log plot data.
The xresult
and yresult
data lines are usually calculated by gwy_field_fractal_cubecounting().
gdouble gwy_field_fractal_triangulation_dim (GwyLine *xresult,GwyLine *yresult,gdouble *a,gdouble *b);
Computes fractal dimension by triangulation method from log-log plot data.
The xresult
and yresult
data lines are usually calculated by gwy_field_fractal_triangulation().
gdouble gwy_field_fractal_partitioning_dim (GwyLine *xresult,GwyLine *yresult,gdouble *a,gdouble *b);
Computes fractal dimension by partitioning (variance) method from log-log plot data.
The xresult
and yresult
data lines are usually calculated by gwy_field_fractal_partitioning().
gdouble gwy_field_fractal_psdf_dim (GwyLine *xresult,GwyLine *yresult,gdouble *a,gdouble *b);
Computes fractal dimension by spectral density function method from log-log plot data.
The xresult
and yresult
data lines are usually calculated by gwy_field_fractal_psdf().
gdouble gwy_field_fractal_hhcf_dim (GwyLine *xresult,GwyLine *yresult,gdouble *a,gdouble *b);
Computes fractal dimension by structure function (HHCF) method from log-log plot data.
The xresult
and yresult
data lines are usually calculated by gwy_field_fractal_hhcf().
void gwy_field_fractal_correction (GwyField *field,GwyField *mask,GwyInterpolationType interpolation);
Replaces data under mask with interpolated values using fractal interpolation.
void gwy_NIELD_fractal_correction (GwyField *field,GwyNield *mask,GwyInterpolationType interpolation);
Replaces data under mask with interpolated values using fractal interpolation.