From 6a7d86ec73c5212c52d76d9ddcb2023fc535b814 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 14 Feb 2015 12:15:23 +0100 Subject: Drop density estimator First of all, it does not look too pretty. But more importantly now we can reduce the bucket size to four (instead of five) and vectorize that stuff. --- filters.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'filters.h') diff --git a/filters.h b/filters.h index c7c18a2..1f7ac16 100644 --- a/filters.h +++ b/filters.h @@ -21,21 +21,10 @@ #include "private.h" -#define DE_THRESH 100 - -typedef struct { - int max_filtered_counts; - int max_filter_index; - int kernel_size; - double *filter_widths; - double *filter_coefs; -} flam3_de_helper; - extern double flam3_spatial_support[flam3_num_spatialfilters]; double flam3_spatial_filter(int knum, double x); int flam3_create_spatial_filter(flam3_frame *spec, int field, double **filter); -flam3_de_helper flam3_create_de_filters(double max_rad, double min_rad, double curve, int ss); double flam3_create_temporal_filter(int numsteps, int filter_type, double filter_exp, double filter_width, double **temporal_filter, double **temporal_deltas); -- cgit v1.2.3