tesseract  4.1.1
tesseract::DoubleParam Class Reference

#include <params.h>

Inheritance diagram for tesseract::DoubleParam:
tesseract::Param

Public Member Functions

 DoubleParam (double value, const char *name, const char *comment, bool init, ParamsVectors *vec)
 
 ~DoubleParam ()
 
 operator double () const
 
void operator= (double value)
 
void set_value (double value)
 
void ResetToDefault ()
 
void ResetFrom (const ParamsVectors *vec)
 
- Public Member Functions inherited from tesseract::Param
 ~Param ()=default
 
const char * name_str () const
 
const char * info_str () const
 
bool is_init () const
 
bool is_debug () const
 
bool constraint_ok (SetParamConstraint constraint) const
 

Additional Inherited Members

- Protected Member Functions inherited from tesseract::Param
 Param (const char *name, const char *comment, bool init)
 
- Protected Attributes inherited from tesseract::Param
const char * name_
 
const char * info_
 
bool init_
 
bool debug_
 

Detailed Description

Definition at line 241 of file params.h.

Constructor & Destructor Documentation

◆ DoubleParam()

tesseract::DoubleParam::DoubleParam ( double  value,
const char *  name,
const char *  comment,
bool  init,
ParamsVectors vec 
)
inline

Definition at line 243 of file params.h.

245  : Param(name, comment, init) {
246  value_ = value;
247  default_ = value;
248  params_vec_ = &(vec->double_params);
249  vec->double_params.push_back(this);
250  }
Param(const char *name, const char *comment, bool init)
Definition: params.h:127

◆ ~DoubleParam()

tesseract::DoubleParam::~DoubleParam ( )
inline

Definition at line 251 of file params.h.

251 { ParamUtils::RemoveParam<DoubleParam>(this, params_vec_); }

Member Function Documentation

◆ operator double()

tesseract::DoubleParam::operator double ( ) const
inline

Definition at line 252 of file params.h.

252 { return value_; }

◆ operator=()

void tesseract::DoubleParam::operator= ( double  value)
inline

Definition at line 253 of file params.h.

253 { value_ = value; }

◆ ResetFrom()

void tesseract::DoubleParam::ResetFrom ( const ParamsVectors vec)
inline

Definition at line 256 of file params.h.

256  {
257  for (int i = 0; i < vec->double_params.size(); ++i) {
258  if (strcmp(vec->double_params[i]->name_str(), name_) == 0) {
259  // printf("overriding param %s=%f by =%f\n", name_, value_,
260  // *vec->double_params[i]);
261  value_ = *vec->double_params[i];
262  break;
263  }
264  }
265  }
const char * name_
Definition: params.h:132

◆ ResetToDefault()

void tesseract::DoubleParam::ResetToDefault ( )
inline

Definition at line 255 of file params.h.

255 { value_ = default_; }

◆ set_value()

void tesseract::DoubleParam::set_value ( double  value)
inline

Definition at line 254 of file params.h.

254 { value_ = value; }

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