mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
* Migrate parameters to v14.1 branch (#2023) * Migrated parameters * - * . * . * . * . * . * Remove unneeded checkboxes for true/false * Remove ";" * Correct MaintTopic * Added missing parameters to UI: FlipImageSize, InitialMirror Removed checkbox in UI for ErrorMessage Added migration of pboolean parameters: enable them if they where disabled, set them to their default value, then enable them Switch SetRetainFlag internally to a boolean * . * CamImages -> RawImages * CamImages -> RawImages * catch error on unknown parameter * fix missing case insensitivity * fix typo * fixmissing rename * fix migration of ExtendedResolution * Delete ClassFlowMakeImage.cpp * Delete ClassFlowMakeImage.h --------- Co-authored-by: CaCO3 <caco@ruinelli.ch> Co-authored-by: jomjol <30766535+jomjol@users.noreply.github.com> * Update Changelog.md --------- Co-authored-by: CaCO3 <caco@ruinelli.ch> Co-authored-by: jomjol <30766535+jomjol@users.noreply.github.com>
85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
#pragma once
|
|
|
|
#ifndef CLASSFFLOWPOSTPROCESSING_H
|
|
#define CLASSFFLOWPOSTPROCESSING_H
|
|
|
|
#include "ClassFlow.h"
|
|
#include "ClassFlowTakeImage.h"
|
|
#include "ClassFlowCNNGeneral.h"
|
|
#include "ClassFlowDefineTypes.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
class ClassFlowPostProcessing :
|
|
public ClassFlow
|
|
{
|
|
protected:
|
|
bool UpdatePreValueINI;
|
|
|
|
int PreValueAgeStartup;
|
|
bool ErrorMessage;
|
|
bool IgnoreLeadingNaN; // SPECIAL CASE for User Gustl ???
|
|
|
|
|
|
ClassFlowCNNGeneral* flowAnalog;
|
|
ClassFlowCNNGeneral* flowDigit;
|
|
|
|
|
|
string FilePreValue;
|
|
|
|
ClassFlowTakeImage *flowTakeImage;
|
|
|
|
bool LoadPreValue(void);
|
|
string ShiftDecimal(string in, int _decShift);
|
|
|
|
string ErsetzteN(string, double _prevalue);
|
|
float checkDigitConsistency(double input, int _decilamshift, bool _isanalog, double _preValue);
|
|
|
|
void InitNUMBERS();
|
|
void handleDecimalSeparator(string _decsep, string _value);
|
|
void handleMaxRateValue(string _decsep, string _value);
|
|
void handleDecimalExtendedResolution(string _decsep, string _value);
|
|
void handleMaxRateType(string _decsep, string _value);
|
|
void handleAnalogDigitalTransitionStart(string _decsep, string _value);
|
|
void handleAllowNegativeRate(string _decsep, string _value);
|
|
|
|
std::string GetStringReadouts(general);
|
|
|
|
void WriteDataLog(int _index);
|
|
|
|
|
|
|
|
|
|
public:
|
|
bool PreValueUse;
|
|
std::vector<NumberPost*> NUMBERS;
|
|
|
|
|
|
ClassFlowPostProcessing(std::vector<ClassFlow*>* lfc, ClassFlowCNNGeneral *_analog, ClassFlowCNNGeneral *_digit);
|
|
virtual ~ClassFlowPostProcessing(){};
|
|
bool ReadParameter(FILE* pfile, string& aktparamgraph);
|
|
bool doFlow(string time);
|
|
string getReadout(int _number);
|
|
string getReadoutParam(bool _rawValue, bool _noerror, int _number = 0);
|
|
string getReadoutError(int _number = 0);
|
|
string getReadoutRate(int _number = 0);
|
|
string getReadoutTimeStamp(int _number = 0);
|
|
void SavePreValue();
|
|
string getJsonFromNumber(int i, std::string _lineend);
|
|
string GetPreValue(std::string _number = "");
|
|
void SetPreValue(double zw, string _numbers, bool _extern = false);
|
|
|
|
std::string GetJSON(std::string _lineend = "\n");
|
|
std::string getNumbersName();
|
|
|
|
void UpdateNachkommaDecimalShift();
|
|
|
|
std::vector<NumberPost*>* GetNumbers(){return &NUMBERS;};
|
|
|
|
string name(){return "ClassFlowPostProcessing";};
|
|
};
|
|
|
|
|
|
#endif //CLASSFFLOWPOSTPROCESSING_H
|