OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Public Member Functions | Protected Attributes | Friends | List of all members
ossimplugins::DataHistogramRecord Class Reference

This class is able to read a data histogram record. More...

#include <DataHistogramRecord.h>

Public Member Functions

 DataHistogramRecord ()
 Constructor. More...
 
 ~DataHistogramRecord ()
 Destructor. More...
 
 DataHistogramRecord (const DataHistogramRecord &rhs)
 Copy constructor. More...
 
DataHistogramRecordoperator= (const DataHistogramRecord &rhs)
 Copy operator. More...
 
std::string get_hist_desc ()
 Histogram descriptor. More...
 
int get_nrec ()
 
Records per table More...
 
int get_tab_seq ()
 
Table sequence number More...
 
int get_nbin ()
 
Total number of table bins More...
 
int get_ns_lin ()
 
Total number of lines More...
 
int get_ns_pix ()
 
Total number of pixels per line More...
 
int get_ngrp_lin ()
 
Group size along line axis More...
 
int get_ngrp_pix ()
 
Group size along pixel axis More...
 
int get_nsamp_lin ()
 
Number of samples used per group along line axis More...
 
int get_nsamp_pix ()
 
Number of samples used per group along pixel More...
 
double get_min_smp ()
 
Minimum first bin More...
 
double get_max_smp ()
 
Maximum last bin More...
 
double get_mean_smp ()
 
Mean sample value More...
 
double get_std_smp ()
 
Sample standard deviation More...
 
double get_smp_inc ()
 
Sample value increment More...
 
double get_min_hist ()
 
Minimum histogram value More...
 
double get_max_hist ()
 
Maximum histogram value More...
 
double get_mean_hist ()
 
Histogram mean value More...
 
double get_std_hist ()
 
Histogram standard deviation More...
 
int get_nhist ()
 
Histogram table size More...
 
int * get_hist ()
 Histogram table values of 16 bins for Ix16 bins for Q. More...
 

Protected Attributes

std::string _hist_desc
 Histogram descriptor. More...
 
int _nrec
 
Records per table More...
 
int _tab_seq
 
Table sequence number More...
 
int _nbin
 
Total number of table bins More...
 
int _ns_lin
 
Total number of lines More...
 
int _ns_pix
 
Total number of pixels per line More...
 
int _ngrp_lin
 
Group size along line axis More...
 
int _ngrp_pix
 
Group size along pixel axis More...
 
int _nsamp_lin
 
Number of samples used per group along line axis More...
 
int _nsamp_pix
 
Number of samples used per group along pixel More...
 
double _min_smp
 
Minimum first bin More...
 
double _max_smp
 
Maximum last bin More...
 
double _mean_smp
 
Mean sample value More...
 
double _std_smp
 
Sample standard deviation More...
 
double _smp_inc
 
Sample value increment More...
 
double _min_hist
 
Minimum histogram value More...
 
double _max_hist
 
Maximum histogram value More...
 
double _mean_hist
 
Histogram mean value More...
 
double _std_hist
 
Histogram standard deviation More...
 
int _nhist
 
Histogram table size More...
 
int * _hist
 Histogram table values. More...
 

Friends

std::ostream & operator<< (std::ostream &os, const DataHistogramRecord &data)
 This function writes the DataHistogramRecord in a stream. More...
 
std::istream & operator>> (std::istream &is, DataHistogramRecord &data)
 This function reads a DataHistogramRecord from a stream. More...
 

Detailed Description

This class is able to read a data histogram record.

Definition at line 27 of file DataHistogramRecord.h.

Constructor & Destructor Documentation

◆ DataHistogramRecord() [1/2]

ossimplugins::DataHistogramRecord::DataHistogramRecord ( )

Constructor.

Definition at line 17 of file DataHistogramRecord.cpp.

17  :
18  _hist(NULL)
19 {
20 }
int * _hist
Histogram table values.

◆ ~DataHistogramRecord()

ossimplugins::DataHistogramRecord::~DataHistogramRecord ( )

Destructor.

Definition at line 22 of file DataHistogramRecord.cpp.

References _hist.

23 {
24  if (_hist != NULL)
25  delete[] _hist;
26 }
int * _hist
Histogram table values.

◆ DataHistogramRecord() [2/2]

ossimplugins::DataHistogramRecord::DataHistogramRecord ( const DataHistogramRecord rhs)

Copy constructor.

Definition at line 28 of file DataHistogramRecord.cpp.

References _hist, and _nhist.

28  :
29  _hist_desc(rhs._hist_desc),
30  _nrec(rhs._nrec),
31  _tab_seq(rhs._tab_seq),
32  _nbin(rhs._nbin),
33  _ns_lin(rhs._ns_lin),
34  _ns_pix(rhs._ns_pix),
35  _ngrp_lin(rhs._ngrp_lin),
36  _ngrp_pix(rhs._ngrp_pix),
37  _nsamp_lin(rhs._nsamp_lin),
38  _nsamp_pix(rhs._nsamp_pix),
39  _min_smp(rhs._min_smp),
40  _max_smp(rhs._max_smp),
41  _mean_smp(rhs._mean_smp),
42  _std_smp(rhs._std_smp),
43  _smp_inc(rhs._smp_inc),
44  _min_hist(rhs._min_hist),
45  _max_hist(rhs._max_hist),
46  _mean_hist(rhs._mean_hist),
47  _std_hist(rhs._std_hist),
48  _nhist(rhs._nhist)
49 {
50  _hist = new int[rhs._nhist];
51  for (int i=0;i<rhs._nhist;i++)
52  {
53  _hist[i] = rhs._hist[i];
54  }
55 }
double _std_hist
Histogram standard deviation
int _ns_pix
Total number of pixels per line
int _ns_lin
Total number of lines
double _std_smp
Sample standard deviation
int _tab_seq
Table sequence number
int * _hist
Histogram table values.
double _mean_hist
Histogram mean value
double _min_smp
Minimum first bin
int _nhist
Histogram table size
int _ngrp_pix
Group size along pixel axis
int _nsamp_lin
Number of samples used per group along line axis
std::string _hist_desc
Histogram descriptor.
int _nsamp_pix
Number of samples used per group along pixel
int _ngrp_lin
Group size along line axis
int _nbin
Total number of table bins
double _mean_smp
Mean sample value
double _min_hist
Minimum histogram value
double _max_hist
Maximum histogram value
double _smp_inc
Sample value increment

Member Function Documentation

◆ get_hist()

int* ossimplugins::DataHistogramRecord::get_hist ( )
inline

Histogram table values of 16 bins for Ix16 bins for Q.

Definition at line 206 of file DataHistogramRecord.h.

References _hist.

207  {
208  return _hist;
209  };
int * _hist
Histogram table values.

◆ get_hist_desc()

std::string ossimplugins::DataHistogramRecord::get_hist_desc ( )
inline

Histogram descriptor.

Definition at line 65 of file DataHistogramRecord.h.

References _hist_desc.

66  {
67  return _hist_desc;
68  };
std::string _hist_desc
Histogram descriptor.

◆ get_max_hist()

double ossimplugins::DataHistogramRecord::get_max_hist ( )
inline


Maximum histogram value

Definition at line 177 of file DataHistogramRecord.h.

References _max_hist.

178  {
179  return _max_hist;
180  };
double _max_hist
Maximum histogram value

◆ get_max_smp()

double ossimplugins::DataHistogramRecord::get_max_smp ( )
inline


Maximum last bin

Definition at line 142 of file DataHistogramRecord.h.

References _max_smp.

143  {
144  return _max_smp;
145  };

◆ get_mean_hist()

double ossimplugins::DataHistogramRecord::get_mean_hist ( )
inline


Histogram mean value

Definition at line 184 of file DataHistogramRecord.h.

References _mean_hist.

185  {
186  return _mean_hist;
187  };
double _mean_hist
Histogram mean value

◆ get_mean_smp()

double ossimplugins::DataHistogramRecord::get_mean_smp ( )
inline


Mean sample value

Definition at line 149 of file DataHistogramRecord.h.

References _mean_smp.

150  {
151  return _mean_smp;
152  };
double _mean_smp
Mean sample value

◆ get_min_hist()

double ossimplugins::DataHistogramRecord::get_min_hist ( )
inline


Minimum histogram value

Definition at line 170 of file DataHistogramRecord.h.

References _min_hist.

171  {
172  return _min_hist;
173  };
double _min_hist
Minimum histogram value

◆ get_min_smp()

double ossimplugins::DataHistogramRecord::get_min_smp ( )
inline


Minimum first bin

Definition at line 135 of file DataHistogramRecord.h.

References _min_smp.

136  {
137  return _min_smp;
138  };
double _min_smp
Minimum first bin

◆ get_nbin()

int ossimplugins::DataHistogramRecord::get_nbin ( )
inline


Total number of table bins

Definition at line 86 of file DataHistogramRecord.h.

References _nbin.

87  {
88  return _nbin;
89  };
int _nbin
Total number of table bins

◆ get_ngrp_lin()

int ossimplugins::DataHistogramRecord::get_ngrp_lin ( )
inline


Group size along line axis

Definition at line 107 of file DataHistogramRecord.h.

References _ngrp_lin.

108  {
109  return _ngrp_lin;
110  };
int _ngrp_lin
Group size along line axis

◆ get_ngrp_pix()

int ossimplugins::DataHistogramRecord::get_ngrp_pix ( )
inline


Group size along pixel axis

Definition at line 114 of file DataHistogramRecord.h.

References _ngrp_pix.

115  {
116  return _ngrp_pix;
117  };
int _ngrp_pix
Group size along pixel axis

◆ get_nhist()

int ossimplugins::DataHistogramRecord::get_nhist ( )
inline


Histogram table size

Definition at line 198 of file DataHistogramRecord.h.

References _nhist.

199  {
200  return _nhist;
201  };
int _nhist
Histogram table size

◆ get_nrec()

int ossimplugins::DataHistogramRecord::get_nrec ( )
inline


Records per table

Definition at line 72 of file DataHistogramRecord.h.

References _nrec.

73  {
74  return _nrec;
75  };

◆ get_ns_lin()

int ossimplugins::DataHistogramRecord::get_ns_lin ( )
inline


Total number of lines

Definition at line 93 of file DataHistogramRecord.h.

References _ns_lin.

94  {
95  return _ns_lin;
96  };
int _ns_lin
Total number of lines

◆ get_ns_pix()

int ossimplugins::DataHistogramRecord::get_ns_pix ( )
inline


Total number of pixels per line

Definition at line 100 of file DataHistogramRecord.h.

References _ns_pix.

101  {
102  return _ns_pix;
103  };
int _ns_pix
Total number of pixels per line

◆ get_nsamp_lin()

int ossimplugins::DataHistogramRecord::get_nsamp_lin ( )
inline


Number of samples used per group along line axis

Definition at line 121 of file DataHistogramRecord.h.

References _nsamp_lin.

122  {
123  return _nsamp_lin;
124  };
int _nsamp_lin
Number of samples used per group along line axis

◆ get_nsamp_pix()

int ossimplugins::DataHistogramRecord::get_nsamp_pix ( )
inline


Number of samples used per group along pixel

Definition at line 128 of file DataHistogramRecord.h.

References _nsamp_pix.

129  {
130  return _nsamp_pix;
131  };
int _nsamp_pix
Number of samples used per group along pixel

◆ get_smp_inc()

double ossimplugins::DataHistogramRecord::get_smp_inc ( )
inline


Sample value increment

Definition at line 163 of file DataHistogramRecord.h.

References _smp_inc.

164  {
165  return _smp_inc;
166  };
double _smp_inc
Sample value increment

◆ get_std_hist()

double ossimplugins::DataHistogramRecord::get_std_hist ( )
inline


Histogram standard deviation

Definition at line 191 of file DataHistogramRecord.h.

References _std_hist.

192  {
193  return _std_hist;
194  };
double _std_hist
Histogram standard deviation

◆ get_std_smp()

double ossimplugins::DataHistogramRecord::get_std_smp ( )
inline


Sample standard deviation

Definition at line 156 of file DataHistogramRecord.h.

References _std_smp.

157  {
158  return _std_smp;
159  };
double _std_smp
Sample standard deviation

◆ get_tab_seq()

int ossimplugins::DataHistogramRecord::get_tab_seq ( )
inline


Table sequence number

Definition at line 79 of file DataHistogramRecord.h.

References _tab_seq.

80  {
81  return _tab_seq;
82  };
int _tab_seq
Table sequence number

◆ operator=()

DataHistogramRecord & ossimplugins::DataHistogramRecord::operator= ( const DataHistogramRecord rhs)

Copy operator.

Definition at line 57 of file DataHistogramRecord.cpp.

References _hist_desc, _max_hist, _max_smp, _mean_hist, _mean_smp, _min_hist, _min_smp, _nbin, _ngrp_lin, _ngrp_pix, _nhist, _nrec, _ns_lin, _ns_pix, _nsamp_lin, _nsamp_pix, _smp_inc, _std_hist, _std_smp, and _tab_seq.

58 {
59  _hist_desc = rhs._hist_desc;
60  _nrec = rhs._nrec;
61  _tab_seq = rhs._tab_seq;
62  _nbin = rhs._nbin;
63  _ns_lin = rhs._ns_lin;
64  _ns_pix = rhs._ns_pix;
65  _ngrp_lin = rhs._ngrp_lin;
66  _ngrp_pix = rhs._ngrp_pix;
67  _nsamp_lin = rhs._nsamp_lin;
68  _nsamp_pix = rhs._nsamp_pix;
69  _min_smp = rhs._min_smp;
70  _max_smp = rhs._max_smp;
71  _mean_smp = rhs._mean_smp;
72  _std_smp = rhs._std_smp;
73  _smp_inc = rhs._smp_inc;
74  _min_hist = rhs._min_hist;
75  _max_hist = rhs._max_hist;
76  _mean_hist = rhs._mean_hist;
77  _std_hist = rhs._std_hist;
78  _nhist = rhs._nhist;
79  return *this;
80 }
double _std_hist
Histogram standard deviation
int _ns_pix
Total number of pixels per line
int _ns_lin
Total number of lines
double _std_smp
Sample standard deviation
int _tab_seq
Table sequence number
double _mean_hist
Histogram mean value
double _min_smp
Minimum first bin
int _nhist
Histogram table size
int _ngrp_pix
Group size along pixel axis
int _nsamp_lin
Number of samples used per group along line axis
std::string _hist_desc
Histogram descriptor.
int _nsamp_pix
Number of samples used per group along pixel
int _ngrp_lin
Group size along line axis
int _nbin
Total number of table bins
double _mean_smp
Mean sample value
double _min_hist
Minimum histogram value
double _max_hist
Maximum histogram value
double _smp_inc
Sample value increment

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  os,
const DataHistogramRecord data 
)
friend

This function writes the DataHistogramRecord in a stream.

Definition at line 82 of file DataHistogramRecord.cpp.

83 {
84  os<<"hist_desc:"<<data._hist_desc.c_str()<<std::endl;
85 
86  os<<"nrec:"<<data._nrec<<std::endl;
87 
88  os<<"tab_seq:"<<data._tab_seq<<std::endl;
89 
90  os<<"nbin:"<<data._nbin<<std::endl;
91 
92  os<<"ns_lin:"<<data._ns_lin<<std::endl;
93 
94  os<<"ns_pix:"<<data._ns_pix<<std::endl;
95 
96  os<<"ngrp_lin:"<<data._ngrp_lin<<std::endl;
97 
98  os<<"ngrp_pix:"<<data._ngrp_pix<<std::endl;
99 
100  os<<"nsamp_lin:"<<data._nsamp_lin<<std::endl;
101 
102  os<<"nsamp_pix:"<<data._nsamp_pix<<std::endl;
103 
104  os<<"min_smp:"<<data._min_smp<<std::endl;
105 
106  os<<"max_smp:"<<data._max_smp<<std::endl;
107 
108  os<<"mean_smp:"<<data._mean_smp<<std::endl;
109 
110  os<<"std_smp:"<<data._std_smp<<std::endl;
111 
112  os<<"smp_inc:"<<data._smp_inc<<std::endl;
113 
114  os<<"min_hist:"<<data._min_hist<<std::endl;
115 
116  os<<"max_histd:"<<data._max_hist<<std::endl;
117 
118  os<<"mean_hist:"<<data._mean_hist<<std::endl;
119 
120  os<<"std_hist:"<<data._std_hist<<std::endl;
121 
122  os<<"nhist:"<<data._nhist<<std::endl;
123 
124  for(int i=0;i<data._nhist;i++)
125  {
126  os<<"his["<<i<<"]:"<<data._hist[i]<<std::endl;
127  }
128  return os;
129 }

◆ operator>>

std::istream& operator>> ( std::istream &  is,
DataHistogramRecord data 
)
friend

This function reads a DataHistogramRecord from a stream.

Definition at line 131 of file DataHistogramRecord.cpp.

132 {
133  char buff[33];
134  buff[32] = '\0';
135 
136  is.read(buff,32);
137  data._hist_desc = buff;
138 
139  is.read(buff,4);
140  buff[4] = '\0';
141  data._nrec = atoi(buff);
142 
143  is.read(buff,4);
144  buff[4] = '\0';
145  data._tab_seq = atoi(buff);
146 
147  is.read(buff,8);
148  buff[8] = '\0';
149  data._nbin = atoi(buff);
150 
151  is.read(buff,8);
152  buff[8] = '\0';
153  data._ns_lin = atoi(buff);
154 
155  is.read(buff,8);
156  buff[8] = '\0';
157  data._ns_pix = atoi(buff);
158 
159  is.read(buff,8);
160  buff[8] = '\0';
161  data._ngrp_lin = atoi(buff);
162 
163  is.read(buff,8);
164  buff[8] = '\0';
165  data._ngrp_pix = atoi(buff);
166 
167  is.read(buff,8);
168  buff[8] = '\0';
169  data._nsamp_lin = atoi(buff);
170 
171  is.read(buff,8);
172  buff[8] = '\0';
173  data._nsamp_pix = atoi(buff);
174 
175  is.read(buff,16);
176  buff[16] = '\0';
177  data._min_smp = atof(buff);
178 
179  is.read(buff,16);
180  buff[16] = '\0';
181  data._max_smp = atof(buff);
182 
183  is.read(buff,16);
184  buff[16] = '\0';
185  data._mean_smp = atof(buff);
186 
187  is.read(buff,16);
188  buff[16] = '\0';
189  data._std_smp = atof(buff);
190 
191  is.read(buff,16);
192  buff[16] = '\0';
193  data._smp_inc = atof(buff);
194 
195  is.read(buff,16);
196  buff[16] = '\0';
197  data._min_hist = atof(buff);
198 
199  is.read(buff,16);
200  buff[16] = '\0';
201  data._max_hist = atof(buff);
202 
203  is.read(buff,16);
204  buff[16] = '\0';
205  data._mean_hist = atof(buff);
206 
207  is.read(buff,16);
208  buff[16] = '\0';
209  data._std_hist = atof(buff);
210 
211  is.read(buff,8);
212  buff[8] = '\0';
213  data._nhist = atoi(buff);
214 
215  if(data._hist != NULL)
216  {
217  delete[] data._hist;
218  }
219 
220  //for (int i=0;i<data._nhist;i++)
221  int nhist ;
222  if (data._nhist == 256)
223  { nhist = 256 ; } // Signal Data
224  else {nhist = 1024 ; } // Processed Data
225 
226  data._hist = new int[nhist];
227  for (int i=0;i<nhist;i++)
228  {
229  is.read(buff,8);
230  buff[8] = '\0';
231  data._hist[i] = atoi(buff);
232  }
233 
234  return is;
235 }

Member Data Documentation

◆ _hist

int* ossimplugins::DataHistogramRecord::_hist
protected

◆ _hist_desc

std::string ossimplugins::DataHistogramRecord::_hist_desc
protected

Histogram descriptor.

Definition at line 209 of file DataHistogramRecord.h.

Referenced by get_hist_desc(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _max_hist

double ossimplugins::DataHistogramRecord::_max_hist
protected


Maximum histogram value

Definition at line 280 of file DataHistogramRecord.h.

Referenced by get_max_hist(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _max_smp

double ossimplugins::DataHistogramRecord::_max_smp
protected


Maximum last bin

Definition at line 260 of file DataHistogramRecord.h.

Referenced by get_max_smp(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _mean_hist

double ossimplugins::DataHistogramRecord::_mean_hist
protected


Histogram mean value

Definition at line 284 of file DataHistogramRecord.h.

Referenced by get_mean_hist(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _mean_smp

double ossimplugins::DataHistogramRecord::_mean_smp
protected


Mean sample value

Definition at line 264 of file DataHistogramRecord.h.

Referenced by get_mean_smp(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _min_hist

double ossimplugins::DataHistogramRecord::_min_hist
protected


Minimum histogram value

Definition at line 276 of file DataHistogramRecord.h.

Referenced by get_min_hist(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _min_smp

double ossimplugins::DataHistogramRecord::_min_smp
protected


Minimum first bin

Definition at line 256 of file DataHistogramRecord.h.

Referenced by get_min_smp(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _nbin

int ossimplugins::DataHistogramRecord::_nbin
protected


Total number of table bins

Definition at line 228 of file DataHistogramRecord.h.

Referenced by get_nbin(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _ngrp_lin

int ossimplugins::DataHistogramRecord::_ngrp_lin
protected


Group size along line axis

Definition at line 240 of file DataHistogramRecord.h.

Referenced by get_ngrp_lin(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _ngrp_pix

int ossimplugins::DataHistogramRecord::_ngrp_pix
protected


Group size along pixel axis

Definition at line 244 of file DataHistogramRecord.h.

Referenced by get_ngrp_pix(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _nhist

int ossimplugins::DataHistogramRecord::_nhist
protected


Histogram table size

Definition at line 292 of file DataHistogramRecord.h.

Referenced by DataHistogramRecord(), get_nhist(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _nrec

int ossimplugins::DataHistogramRecord::_nrec
protected


Records per table

Definition at line 220 of file DataHistogramRecord.h.

Referenced by get_nrec(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _ns_lin

int ossimplugins::DataHistogramRecord::_ns_lin
protected


Total number of lines

Definition at line 232 of file DataHistogramRecord.h.

Referenced by get_ns_lin(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _ns_pix

int ossimplugins::DataHistogramRecord::_ns_pix
protected


Total number of pixels per line

Definition at line 236 of file DataHistogramRecord.h.

Referenced by get_ns_pix(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _nsamp_lin

int ossimplugins::DataHistogramRecord::_nsamp_lin
protected


Number of samples used per group along line axis

Definition at line 248 of file DataHistogramRecord.h.

Referenced by get_nsamp_lin(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _nsamp_pix

int ossimplugins::DataHistogramRecord::_nsamp_pix
protected


Number of samples used per group along pixel

Definition at line 252 of file DataHistogramRecord.h.

Referenced by get_nsamp_pix(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _smp_inc

double ossimplugins::DataHistogramRecord::_smp_inc
protected


Sample value increment

Definition at line 272 of file DataHistogramRecord.h.

Referenced by get_smp_inc(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _std_hist

double ossimplugins::DataHistogramRecord::_std_hist
protected


Histogram standard deviation

Definition at line 288 of file DataHistogramRecord.h.

Referenced by get_std_hist(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _std_smp

double ossimplugins::DataHistogramRecord::_std_smp
protected


Sample standard deviation

Definition at line 268 of file DataHistogramRecord.h.

Referenced by get_std_smp(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().

◆ _tab_seq

int ossimplugins::DataHistogramRecord::_tab_seq
protected


Table sequence number

Definition at line 224 of file DataHistogramRecord.h.

Referenced by get_tab_seq(), ossimplugins::operator<<(), operator=(), and ossimplugins::operator>>().


The documentation for this class was generated from the following files: