Go to the documentation of this file.00001
00002 #ifndef vpdfl_kernel_pdf_builder_h
00003 #define vpdfl_kernel_pdf_builder_h
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007
00008
00009
00010
00011
00012 #include <vpdfl/vpdfl_builder_base.h>
00013 #include <vcl_iosfwd.h>
00014
00015
00016
00017 class vpdfl_kernel_pdf;
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 class vpdfl_kernel_pdf_builder : public vpdfl_builder_base
00037 {
00038 public:
00039 enum build_type { fixed_width, select_equal, width_from_sep, adaptive };
00040 private:
00041
00042 double min_var_;
00043
00044
00045 build_type build_type_;
00046
00047
00048 double fixed_width_;
00049
00050 vpdfl_kernel_pdf& kernel_pdf(vpdfl_pdf_base& model) const;
00051 public:
00052
00053
00054 vpdfl_kernel_pdf_builder();
00055
00056
00057 virtual ~vpdfl_kernel_pdf_builder();
00058
00059
00060 void set_use_fixed_width(double width);
00061
00062
00063 void set_use_equal_width();
00064
00065
00066 void set_use_width_from_separation();
00067
00068
00069 void set_use_adaptive();
00070
00071
00072 virtual void set_min_var(double min_var);
00073
00074
00075 virtual double min_var() const;
00076
00077
00078 virtual void build(vpdfl_pdf_base& model, const vnl_vector<double>& mean) const;
00079
00080
00081 virtual void build(vpdfl_pdf_base& model,
00082 mbl_data_wrapper<vnl_vector<double> >& data) const;
00083
00084
00085 void build_from_array(vpdfl_pdf_base& model,
00086 const vnl_vector<double>* data, int n) const;
00087
00088
00089 virtual void weighted_build(vpdfl_pdf_base& model,
00090 mbl_data_wrapper<vnl_vector<double> >& data,
00091 const vcl_vector<double>& wts) const;
00092
00093
00094 void build_fixed_width(vpdfl_kernel_pdf& kpdf,
00095 const vnl_vector<double>* data, int n, double width) const;
00096
00097
00098
00099
00100
00101 void build_select_equal_width(vpdfl_kernel_pdf& kpdf,
00102 const vnl_vector<double>* data, int n) const;
00103
00104
00105 void build_width_from_separation(vpdfl_kernel_pdf& kpdf,
00106 const vnl_vector<double>* data, int n) const;
00107
00108
00109
00110
00111 void build_adaptive(vpdfl_kernel_pdf& kpdf,
00112 const vnl_vector<double>* data, int n) const;
00113
00114
00115 short version_no() const;
00116
00117
00118 virtual vcl_string is_a() const;
00119
00120
00121 virtual bool is_class(vcl_string const& s) const;
00122
00123
00124 virtual void print_summary(vcl_ostream& os) const;
00125
00126
00127 virtual void b_write(vsl_b_ostream& bfs) const;
00128
00129
00130 virtual void b_read(vsl_b_istream& bfs);
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144 virtual void config_from_stream(vcl_istream & is);
00145
00146 };
00147
00148 #endif // vpdfl_kernel_pdf_builder_h