removed calls to other layers to get into solver

problem with imread in preprocess when multiple layers make call. This was subv. by deactivating these layers.
This commit is contained in:
Raphael Maenle
2018-01-26 22:27:46 +01:00
parent 3a57fbd5e9
commit 7920e73bfb
8 changed files with 26 additions and 25 deletions

View File

@ -1,6 +1,6 @@
#pragma once
//TODO!! increase Destructioncount
#define DESTRUCTION_COUNT 3
#define DESTRUCTION_COUNT 1
#include "DestructionPower_Properties.h"
#include "../AbstraktionLayer_Base.h"

View File

@ -271,7 +271,7 @@ Mat analyseParts::readImages(int count)
return src;
}
if(DISPLAY)imshow("src",src);
//if(DISPLAY)imshow("src",src);
Mat im_gray, im_bw;
cvtColor(src, im_gray, CV_RGB2GRAY);

View File

@ -1,7 +1,3 @@
//
// Created by mpapa on 05.12.2017.
//
#ifndef SOURCE_ABSTRACTIONLAYER_1_H
#define SOURCE_ABSTRACTIONLAYER_1_H

View File

@ -2,6 +2,8 @@
#define SOURCE_ABSTRACTIONLAYER_SURFFEATURES_H
#include "../AbstraktionLayer_Base.h"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#ifdef _WIN32
#define PATH_FULL_PUZZLE "..\\..\\..\\puzzle_img\\puzzle1.jpg"