Go to the documentation of this file.00001 #ifndef mfpf_region_pdf_builder_h_
00002 #define mfpf_region_pdf_builder_h_
00003
00004
00005
00006
00007
00008 #include <mfpf/mfpf_point_finder_builder.h>
00009 #include <vpdfl/vpdfl_builder_base.h>
00010 #include <mbl/mbl_cloneable_ptr.h>
00011 #include <mbl/mbl_chord.h>
00012 #include <vcl_iosfwd.h>
00013 #include <mfpf/mfpf_region_form.h>
00014 #include <vgl/vgl_fwd.h>
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 class mfpf_region_pdf_builder : public mfpf_point_finder_builder
00029 {
00030 private:
00031
00032 double ref_x_;
00033
00034 double ref_y_;
00035
00036
00037 vcl_string shape_;
00038
00039
00040 vcl_vector<mbl_chord> roi_;
00041
00042
00043 unsigned roi_ni_;
00044
00045 unsigned roi_nj_;
00046
00047
00048 unsigned n_pixels_;
00049
00050
00051 mbl_cloneable_ptr<vpdfl_builder_base> pdf_builder_;
00052
00053
00054 short norm_method_;
00055
00056
00057 vcl_vector<vnl_vector<double> > data_;
00058
00059
00060 unsigned nA_;
00061
00062
00063 double dA_;
00064
00065
00066
00067 double overlap_f_;
00068
00069
00070 void set_defaults();
00071
00072
00073 void set_as_box(unsigned ni, unsigned nj,
00074 double ref_x, double ref_y);
00075
00076
00077
00078 void set_as_ellipse(double ri, double rj);
00079
00080
00081
00082 void config_as_box(vcl_istream &is);
00083
00084
00085
00086 void config_as_ellipse(vcl_istream &is);
00087
00088
00089 void add_one_example(const vimt_image_2d_of<float>& image,
00090 const vgl_point_2d<double>& p,
00091 const vgl_vector_2d<double>& u);
00092
00093 public:
00094
00095
00096 mfpf_region_pdf_builder();
00097
00098
00099 virtual ~mfpf_region_pdf_builder();
00100
00101
00102 void set_as_box(unsigned ni, unsigned nj,
00103 double ref_x, double ref_y,
00104 const vpdfl_builder_base& builder);
00105
00106
00107
00108 void set_as_box(unsigned ni, unsigned nj,
00109 const vpdfl_builder_base& builder);
00110
00111
00112
00113 void set_as_ellipse(double ri, double rj,
00114 const vpdfl_builder_base& builder);
00115
00116
00117
00118
00119 void set_region(const mfpf_region_form& form);
00120
00121
00122
00123
00124
00125 virtual void set_region_size(double wi, double wj);
00126
00127
00128
00129 unsigned n_pixels() const { return n_pixels_; }
00130
00131
00132 const vcl_string& shape() const { return shape_; }
00133
00134
00135 vpdfl_builder_base& pdf_builder() { return pdf_builder_; }
00136
00137
00138 virtual mfpf_point_finder* new_finder() const;
00139
00140
00141
00142 virtual void clear(unsigned n_egs);
00143
00144
00145 virtual void add_example(const vimt_image_2d_of<float>& image,
00146 const vgl_point_2d<double>& p,
00147 const vgl_vector_2d<double>& u);
00148
00149
00150 virtual void build(mfpf_point_finder&);
00151
00152
00153 virtual bool set_from_stream(vcl_istream &is);
00154
00155
00156 virtual vcl_string is_a() const;
00157
00158
00159 virtual mfpf_point_finder_builder* clone() const;
00160
00161
00162 virtual void print_summary(vcl_ostream& os) const;
00163
00164
00165 void print_shape(vcl_ostream& os) const;
00166
00167
00168 short version_no() const;
00169
00170
00171 virtual void b_write(vsl_b_ostream& bfs) const;
00172
00173
00174 virtual void b_read(vsl_b_istream& bfs);
00175 };
00176
00177 #endif