mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 19:46:54 +03:00
* Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload * Add files via upload
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#ifndef CLASSFLOWALIGNMENT_H
|
|
#define CLASSFLOWALIGNMENT_H
|
|
|
|
#include "ClassFlow.h"
|
|
#include "Helper.h"
|
|
#include "CAlignAndCutImage.h"
|
|
#include "CFindTemplate.h"
|
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class ClassFlowAlignment : public ClassFlow
|
|
{
|
|
protected:
|
|
float initialrotate;
|
|
bool initialflip;
|
|
bool use_antialiasing;
|
|
RefInfo References[2];
|
|
int anz_ref;
|
|
string namerawimage;
|
|
bool SaveAllFiles;
|
|
CAlignAndCutImage *AlignAndCutImage;
|
|
std::string FileStoreRefAlignment;
|
|
float SAD_criteria;
|
|
|
|
void SetInitialParameter(void);
|
|
bool LoadReferenceAlignmentValues(void);
|
|
void SaveReferenceAlignmentValues();
|
|
|
|
public:
|
|
CImageBasis *ImageBasis, *ImageTMP;
|
|
#ifdef ALGROI_LOAD_FROM_MEM_AS_JPG
|
|
ImageData *AlgROI;
|
|
#endif
|
|
|
|
ClassFlowAlignment(std::vector<ClassFlow *> *lfc);
|
|
|
|
CAlignAndCutImage *GetAlignAndCutImage() { return AlignAndCutImage; };
|
|
|
|
void DrawRef(CImageBasis *_zw);
|
|
|
|
bool ReadParameter(FILE *pfile, string &aktparamgraph);
|
|
bool doFlow(string time);
|
|
string getHTMLSingleStep(string host);
|
|
string name() { return "ClassFlowAlignment"; };
|
|
};
|
|
|
|
#endif // CLASSFLOWALIGNMENT_H
|