PuzzleSolver/Source/functions/AbstractionLayers/Layer_SURFFeatures/AbstractionLayer_SURFFeatures.h

41 lines
1.4 KiB
C
Raw Normal View History

2018-01-25 22:14:00 +01:00
#ifndef SOURCE_ABSTRACTIONLAYER_SURFFEATURES_H
#define SOURCE_ABSTRACTIONLAYER_SURFFEATURES_H
#include "../AbstraktionLayer_Base.h"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
2018-01-25 22:14:00 +01:00
#ifdef _WIN32
2018-01-27 13:54:09 +01:00
#define PATH_FULL_PUZZLE "..\\..\\..\\puzzle_img\\puzzle2.jpg"
#elif defined __unix__
#define PATH_FULL_PUZZLE "..//..//..//puzzle_img//puzzle1.jpg"
#elif defined __APPLE__
#define PATH_FULL_PUZZLE "..//..//..//puzzle_img//puzzle1.jpg"
#endif
#ifdef _WIN32 //TODO: Code duplicate from AbstractionLayer_1.h
2018-01-26 22:26:19 +01:00
#define PATH1 "..\\..\\..\\pieces\\%04d.jpg"
#elif defined __unix__
2018-01-26 22:26:19 +01:00
#define PATH1 "..//..//..//pieces//%04d.jpg"
#elif defined __APPLE__
2018-01-26 22:26:19 +01:00
#define PATH1 "..//..//..//pieces//%04d.jpg"
#endif
2018-01-25 22:14:00 +01:00
using namespace std;
class AbstractionLayer_SURFFeatures : public AbstractionLayer_Base<AbstractionLayer_SURFFeatures_Properties>
{
public:
bool PreProcessing(coor mySize, const vector<Part*>* partArray) ;
bool PreProcessingFullImg(coor mySize) ;
bool PreProcessingPieces(coor mySize, const vector<Part*>* partArray) ;
2018-01-25 22:14:00 +01:00
bool EvaluateQuality (const coor constraintCoordinate, qualityVector& qVector);
bool SetConstraintOnPosition(const coor constraintCoordinate,const AbstractionLayer_SURFFeatures_Properties constraint);
bool RemoveConstraintOnPosition(const coor constraintCoordinate);
private:
};
#endif //SOURCE_ABSTRACTIONLAYER_SURFFEATURES_H