31 string rawlog_file, sensorLabel;
32 int enoseID, sensorType, indexMonitoredSensor,
35 bool have_estimation, apply_delay;
40 cout <<
"Using configuration from './CONFIG_MOXmodel.ini'" << endl;
43 rawlog_file = conf.read_string(
"",
"rawlog_file",
"",
true);
44 sensorLabel = conf.read_string(
"",
"sensorLabel",
"Full_MCEnose",
true);
45 enoseID = conf.read_int(
"",
"enoseID", 0,
true);
46 std::string sensorType_str =
47 conf.read_string(
"",
"sensorType",
"-1",
true);
48 stringstream
convert(sensorType_str);
49 convert >> std::hex >> sensorType;
52 apply_delay = conf.read_bool(
"",
"apply_delay",
false,
true);
53 delay_value = conf.read_int(
"",
"delay_value", 0,
true);
56 MOSmodel.
a_rise = conf.read_float(
"",
"a_rise", 0.0,
true);
57 MOSmodel.
b_rise = conf.read_float(
"",
"b_rise", 0.0,
true);
58 MOSmodel.
a_decay = conf.read_float(
"",
"a_decay", 0.0,
true);
59 MOSmodel.
b_decay = conf.read_float(
"",
"b_decay", 0.0,
true);
60 MOSmodel.
winNoise_size = conf.read_int(
"",
"winNoise_size", 0,
true);
61 MOSmodel.
decimate_value = conf.read_int(
"",
"decimate_value", 0,
true);
64 indexMonitoredSensor = -1;
68 cout <<
"Configuration file (ini) cannot be found\n" << endl;
75 cout <<
"Processing Rawlog " << rawlog_file << endl;
76 cout <<
"Obtaining MOXmodel from " << sensorLabel <<
"(" << enoseID
77 <<
") - sensor " << sensorType << endl;
81 file_input.
open(rawlog_file);
82 file_output.
open(
"MOX_model_output.rawlog");
85 cout <<
"Error opening rawlog file" << endl;
105 obs->timestamp = obs->timestamp -
106 std::chrono::milliseconds(delay_value);
108 if (obs->sensorLabel == sensorLabel)
118 obs->m_readings[enoseID].readingsVoltage);
123 if (indexMonitoredSensor == -1)
127 for (indexMonitoredSensor = 0;
128 indexMonitoredSensor <
129 (int)obs->m_readings[enoseID]
131 indexMonitoredSensor++)
133 if (obs->m_readings[enoseID].sensorTypes.at(
134 indexMonitoredSensor) ==
135 std::vector<int>::value_type(
141 if (indexMonitoredSensor <
142 (
int)obs->m_readings[enoseID]
146 obs->m_readings[enoseID].readingsVoltage.at(
147 indexMonitoredSensor);
152 cout <<
"sensorType not found. Computing the " 156 obs->m_readings[enoseID].readingsVoltage);
162 obs->m_readings[enoseID].eNosePoseOnTheRobot;
163 float MOXmodel_estimation = raw_reading;
169 MOXmodel_estimation, MOXmodel_timestamp);
182 MOXmodel_estimation);
185 auto obs_GDM = CObservationGasSensors::Create();
186 obs_GDM->sensorLabel =
"GDM";
189 obs_GDM->timestamp = MOXmodel_timestamp;
190 obs_GDM->m_readings.push_back(gd_est);
204 cout <<
"Exception: " << e.what() << endl;
float b_rise
tau = a*AMPLITUDE +b (linear relationship)
bool open(const std::string &fileName, int compress_level=1, mrpt::optional_ref< std::string > error_msg=std::nullopt)
Open a file for write, choosing the compression level.
float temperature
Sensed temperature in Celcius (valid if hasTemperature=true only)
This class allows loading and storing values and vectors of different types from ".ini" files easily.
This file implements several operations that operate element-wise on individual or pairs of container...
bool fileExists(const std::string &fileName)
Test if a given file (or directory) exists.
The structure for each e-nose.
size_t winNoise_size
The size of the mobile average window used to reduce noise on sensor reagings.
bool fileOpenCorrectly() const
Returns true if the file was open without errors.
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT's CStream, std::istream, std::ostream, std::stringstream.
mrpt::Clock::time_point TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
This base provides a set of functions for maths stuff.
math::TPose3D eNosePoseOnTheRobot
The pose of the sensors on the robot.
std::vector< int > sensorTypes
The kind of sensors in the array (size of "sensorTypes" is the same that the size of "readingsVoltage...
bool hasTemperature
Must be true for "temperature" to contain a valid measurement.
This namespace contains representation of robot actions and observations.
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
Declares a class within "CObservationGasSensors" that represents a set of gas concentration readings ...
Declares a class derived from "CObservation" that represents a set of readings from gas sensors...
float a_decay
tau = a*AMPLITUDE +b (linear relationship)
void close()
Close the file.
bool convert(const sensor_msgs::LaserScan &msg, const mrpt::poses::CPose3D &pose, mrpt::obs::CObservation2DRangeScan &obj)
bool isActive
True if the input to this chamber/enose is poluted air, False if clean air.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
int decimate_value
[useMOSmodel] The decimate frecuency applied after noise filtering
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
double mean(const CONTAINER &v)
Computes the mean value of a vector.
std::vector< float > readingsVoltage
The set of readings (in volts) from the array of sensors (size of "sensorTypes" is the same that the ...
Saves data to a file and transparently compress the data using the given compression level...
float b_decay
tau = a*AMPLITUDE +b (linear relationship)
float a_rise
tau = a*AMPLITUDE +b (linear relationship)
bool get_GasDistribution_estimation(float &reading, mrpt::system::TTimeStamp ×tamp)
Obtain an estimation of the gas distribution based on raw sensor readings.