2017-12-18 21:24:21 +01:00
# include "AbstractionLayer_1.h"
2017-12-21 12:20:57 +01:00
# include "../../../header.h"
2017-12-18 21:24:21 +01:00
# include <iostream>
2017-12-22 23:27:50 +01:00
# include <bitset>
2017-12-18 21:24:21 +01:00
2017-12-29 14:33:22 +01:00
bool AbstractionLayer_1 : : PreProcessing ( coor mySize , const vector < Part * > * partArray )
2017-12-18 21:24:21 +01:00
{
2018-01-07 20:08:50 +01:00
cout < < " Abstraction 1 Preprocessing... " < < flush ;
2018-01-06 23:23:42 +01:00
const vector < Part * > & ref_partArray = * partArray ;
2018-01-07 20:08:50 +01:00
analyseParts analyse ( mySize . row * mySize . col ) ;
2017-12-29 12:07:56 +01:00
Part buf ;
2018-01-20 11:58:32 +01:00
int PSum = 0 ;
2018-01-06 23:23:42 +01:00
int iterator = 0 ;
2017-12-29 14:33:22 +01:00
if ( ! analyse . getImages ( ) )
{
2017-12-29 15:00:43 +01:00
cerr < < " Error occured in getImages! " < < endl ;
2017-12-29 14:33:22 +01:00
return false ;
}
2018-01-06 23:23:42 +01:00
else // hier werden alle vier verschiedenen Rotationsarten 'gleichzeitig' abgespeichert
2018-01-07 20:08:50 +01:00
//TODO rows and cols
for ( int i = 0 ; i < mySize . row * mySize . col ; i + + )
2017-12-29 14:33:22 +01:00
{
2018-01-20 11:58:32 +01:00
unsigned char poempel = analyse . getTabs ( i ) ;
2018-01-22 19:20:25 +01:00
2018-01-20 11:58:32 +01:00
PSum + = PoempelSum ( poempel ) ; //preprocess correct check
2018-01-06 23:23:42 +01:00
for ( int j = 0 ; j < 4 ; j + + )
{
ref_partArray [ iterator ] - > m_a1 . m_connections = poempel ;
2018-01-22 19:20:25 +01:00
ref_partArray [ iterator ] - > m_a3 . SideLength = analyse . getPoempelPosition ( i ) ; //do abstraction Layer 3 check
2018-01-06 23:23:42 +01:00
shift ( poempel , 1 ) ;
2018-01-22 19:20:25 +01:00
ref_partArray [ iterator ] - > m_a3 . shift ( j ) ; //rotate information
2018-01-06 23:23:42 +01:00
iterator + + ;
}
2017-12-29 14:33:22 +01:00
}
2017-12-29 12:07:56 +01:00
2018-01-20 11:58:32 +01:00
if ( PREPRO_CHECK & & PSum )
return false ;
2017-12-29 12:07:56 +01:00
2018-01-20 11:58:32 +01:00
//Zugriff auf den vector mit den einzelnen teilen: part[0].getConnenctions() entspricht pömpel von bild 0.jpg und liefert ein unsigned char, poempl Belegung wie ausgemacht
2017-12-29 12:07:56 +01:00
2018-01-20 16:02:44 +01:00
InitialiseConstraintMatrixSize ( mySize . col + 2 , mySize . row + 2 ) ;
2017-12-18 21:24:21 +01:00
setEdgeZero ( ) ;
2017-12-29 14:33:22 +01:00
2018-01-07 20:08:50 +01:00
cout < < " Done! " < < endl ;
2017-12-29 14:33:22 +01:00
return true ;
2017-12-18 21:24:21 +01:00
}
2018-01-20 11:58:32 +01:00
int AbstractionLayer_1 : : PoempelSum ( uint8_t constraint )
{
int PoempelSum = 0 ;
if ( ( constraint & 0b11000000 ) = = 0b01000000 )
PoempelSum - - ;
else if ( ( constraint & 0b11000000 ) = = 0b10000000 )
PoempelSum + + ;
if ( ( constraint & 0b00110000 ) = = 0b00010000 )
PoempelSum - - ;
else if ( ( constraint & 0b00110000 ) = = 0b00100000 )
PoempelSum + + ;
if ( ( constraint & 0b00001100 ) = = 0b00000100 )
PoempelSum - - ;
else if ( ( constraint & 0b00001100 ) = = 0b00001000 )
PoempelSum + + ;
if ( ( constraint & 0b00000011 ) = = 0b00000001 )
PoempelSum - - ;
else if ( ( constraint & 0b00000011 ) = = 0b00000010 )
PoempelSum + + ;
return PoempelSum ;
}
2017-12-20 17:35:52 +01:00
//it through qualityVector and removes all that do not trigger PlaceOfPartGood
2017-12-20 22:05:04 +01:00
bool AbstractionLayer_1 : : EvaluateQuality ( const coor constraintCoordinate , qualityVector & qVector )
2017-12-18 21:24:21 +01:00
{
2018-01-06 23:23:42 +01:00
for ( int i = 0 ; i < qVector . size ( ) ; i + + )
2017-12-18 22:50:03 +01:00
{
2018-01-06 23:23:42 +01:00
if ( PlaceOfPartGood ( constraintCoordinate , qVector [ i ] . second - > m_a1 . m_connections ) )
2018-01-07 14:16:57 +01:00
{
qVector [ i ] . first = 1 ;
2017-12-20 17:35:52 +01:00
continue ;
2018-01-07 14:16:57 +01:00
}
qVector [ i ] . first = 0 ;
2017-12-18 22:50:03 +01:00
}
2017-12-18 21:24:21 +01:00
}
bool AbstractionLayer_1 : : SetConstraintOnPosition ( const coor constraintCoordinate , const AbstractionLayer_1_Properties constraint )
{
2018-01-07 20:08:50 +01:00
m_constraintMatrix [ constraintCoordinate . col + 1 ] [ constraintCoordinate . row + 1 ] . m_connections = constraint . m_connections ;
2017-12-18 21:24:21 +01:00
}
bool AbstractionLayer_1 : : RemoveConstraintOnPosition ( const coor constraintCoordinate )
{
2018-01-07 20:08:50 +01:00
m_constraintMatrix [ constraintCoordinate . col + 1 ] [ constraintCoordinate . row + 1 ] . m_connections = 0b11111111 ;
2017-12-18 21:24:21 +01:00
}
2018-01-20 09:40:03 +01:00
int AbstractionLayer_1 : : RemoveSimilar ( qualityVector & qVector , uint8_t & constraints )
{
//
for ( int i = 0 ; i < qVector . size ( ) ; )
{
if ( qVector [ i ] . second - > m_a1 . m_connections = = constraints )
qVector . erase ( qVector . begin ( ) + i ) ;
else
i + + ;
}
}
2017-12-23 10:11:07 +01:00
void AbstractionLayer_1 : : CreateRandomPuzzle ( )
2017-12-18 21:24:21 +01:00
{
2017-12-22 22:47:14 +01:00
std : : minstd_rand simple_rand ;
2018-01-18 21:47:53 +01:00
simple_rand . seed ( ( unsigned int ) time ( nullptr ) ) ; //dumbo
2017-12-20 17:35:52 +01:00
2018-01-07 21:58:16 +01:00
for ( int col = 0 ; col < m_constraintMatrix . size ( ) - 2 ; col + + ) {
for ( int row = 0 ; row < ( m_constraintMatrix [ col ] . size ( ) - 2 ) ; )
2017-12-18 21:24:21 +01:00
{
2017-12-20 18:23:39 +01:00
//create random piece
2017-12-18 21:24:21 +01:00
uint8_t tempPiece = 0b00000000 ;
2017-12-20 17:35:52 +01:00
if ( simple_rand ( ) % 2 )
2017-12-18 21:24:21 +01:00
tempPiece | = 0b01000000 ;
else
tempPiece | = 0b10000000 ;
2017-12-20 17:35:52 +01:00
if ( simple_rand ( ) % 2 )
2017-12-18 22:50:03 +01:00
tempPiece | = 0b00010000 ;
else
tempPiece | = 0b00100000 ;
2017-12-18 21:24:21 +01:00
2017-12-20 17:35:52 +01:00
if ( simple_rand ( ) % 2 )
2017-12-18 21:24:21 +01:00
tempPiece | = 0b00000100 ;
else
tempPiece | = 0b00001000 ;
2017-12-20 17:35:52 +01:00
if ( simple_rand ( ) % 2 )
2017-12-18 22:50:03 +01:00
tempPiece | = 0b00000001 ;
2017-12-18 21:24:21 +01:00
else
2017-12-18 22:50:03 +01:00
tempPiece | = 0b00000010 ;
2017-12-18 21:24:21 +01:00
2017-12-20 18:23:39 +01:00
//set edges and corners to 00
2018-01-07 21:58:16 +01:00
if ( row = = 0 )
2017-12-20 18:23:39 +01:00
tempPiece and_eq ( uint8_t ) 0b00111111 ;
2018-01-07 21:58:16 +01:00
if ( row = = ( m_constraintMatrix [ col ] . size ( ) - 3 ) )
2017-12-20 18:23:39 +01:00
tempPiece and_eq ( uint8_t ) 0b11110011 ;
2018-01-07 21:58:16 +01:00
if ( col = = 0 )
2017-12-20 18:23:39 +01:00
tempPiece and_eq ( uint8_t ) 0b11111100 ;
2018-01-07 21:58:16 +01:00
if ( col = = ( m_constraintMatrix . size ( ) - 3 ) )
2017-12-20 18:23:39 +01:00
tempPiece and_eq ( uint8_t ) 0b11001111 ;
//set piece if piece good
2018-01-07 20:08:50 +01:00
if ( PlaceOfPartGood ( coor ( ( unsigned int ) col , ( unsigned int ) row ) , tempPiece ) )
2017-12-22 22:47:14 +01:00
{
2018-01-07 21:58:16 +01:00
m_constraintMatrix [ col + 1 ] [ row + 1 ] . m_connections = tempPiece ;
row + + ;
2017-12-22 22:47:14 +01:00
}
2017-12-18 21:24:21 +01:00
}
}
}
2017-12-20 17:35:52 +01:00
//puts all pieces of the current constraint matrix into a puzzlebox
qualityVector AbstractionLayer_1 : : returnInBox ( vector < Part > & PuzzleBox )
{
if ( ! ( PuzzleBox . size ( ) ) )
for ( int i = 0 ; i < ( m_constraintMatrix . size ( ) - 2 ) * ( m_constraintMatrix [ 0 ] . size ( ) - 2 ) ; i + + )
PuzzleBox . emplace_back ( Part ( ) ) ;
int i = 0 ;
for ( int col = 1 ; col < m_constraintMatrix . size ( ) - 1 ; col + + )
for ( int row = 1 ; row < m_constraintMatrix [ col ] . size ( ) - 1 ; row + + )
2017-12-23 10:11:07 +01:00
PuzzleBox [ i + + ] . m_a1 . m_connections = m_constraintMatrix [ col ] [ row ] . m_connections ;
2017-12-20 17:35:52 +01:00
}
2017-12-22 23:27:50 +01:00
void AbstractionLayer_1 : : printConstraintMatrix ( ) {
2018-01-07 21:58:16 +01:00
for ( int j = 0 ; j < m_constraintMatrix [ 0 ] . size ( ) ; j + + ) {
for ( int i = 0 ; i < m_constraintMatrix . size ( ) ; i + + )
std : : cout < < std : : bitset < 8 > ( m_constraintMatrix [ i ] [ j ] . m_connections ) < < " " ;
2017-12-22 23:27:50 +01:00
std : : cout < < std : : endl ;
}
2017-12-23 10:11:07 +01:00
cout . flush ( ) ;
2017-12-22 23:27:50 +01:00
}
2017-12-18 21:24:21 +01:00
void AbstractionLayer_1 : : setEdgeZero ( )
{
2017-12-23 00:17:56 +01:00
for ( int row = 0 ; row < m_constraintMatrix . size ( ) ; row + + )
for ( int col = 0 ; col < m_constraintMatrix [ row ] . size ( ) ; col + + )
if ( col = = 0 | | col = = ( m_constraintMatrix [ row ] . size ( ) - 1 ) | | row = = 0 | | row = = ( m_constraintMatrix . size ( ) - 1 ) )
m_constraintMatrix [ row ] [ col ] . m_connections = 0b00000000 ;
2017-12-18 21:24:21 +01:00
}
2017-12-18 22:50:03 +01:00
//checks if the myPart in its current orientation is legal in position m, n
bool AbstractionLayer_1 : : PlaceOfPartGood ( coor myCoor , uint8_t & myPart )
{
2018-01-06 23:23:42 +01:00
//sets coordinates to correct position for layer
myCoor . row + + ;
myCoor . col + + ;
2017-12-18 22:50:03 +01:00
2017-12-21 12:20:57 +01:00
uint8_t negativePart = 0b00000000 ;
2017-12-18 22:50:03 +01:00
2018-01-07 21:58:16 +01:00
negativePart or_eq ( m_constraintMatrix [ myCoor . col + 1 ] [ myCoor . row ] . m_connections & 0b00000011 ) ;
negativePart or_eq ( m_constraintMatrix [ myCoor . col ] [ myCoor . row - 1 ] . m_connections & 0b00001100 ) ;
negativePart or_eq ( m_constraintMatrix [ myCoor . col - 1 ] [ myCoor . row ] . m_connections & 0b00110000 ) ;
negativePart or_eq ( m_constraintMatrix [ myCoor . col ] [ myCoor . row + 1 ] . m_connections & 0b11000000 ) ;
2017-12-18 22:50:03 +01:00
shift ( negativePart , 2 ) ;
if (
( ( ( ( ( negativePart & 0b11000000 ) ^ ( myPart & 0b11000000 ) ) ! = 0b00000000 ) & & ( ( ( myPart & 0b11000000 ) ! = 0b00000000 ) & & ( negativePart & 0b11000000 ) ! = 0b00000000 ) )
| | ( ( ( ( negativePart & 0b11000000 ) = = 0b11000000 ) | | ( ( myPart & 0b11000000 ) = = 0b11000000 ) ) & & ( ( ( myPart & 0b11000000 ) ! = 0b00000000 ) & & ( negativePart & 0b11000000 ) ! = 0b00000000 ) )
| | ( ( ( negativePart & 0b11000000 ) = = 0b00000000 ) & & ( ( myPart & 0b11000000 ) = = 0b00000000 ) ) )
& &
( ( ( ( ( negativePart & 0b00110000 ) ^ ( myPart & 0b00110000 ) ) ! = 0b00000000 ) & & ( ( ( myPart & 0b00110000 ) ! = 0b00000000 ) & & ( negativePart & 0b00110000 ) ! = 0b00000000 ) )
| | ( ( ( ( negativePart & 0b00110000 ) = = 0b00110000 ) | | ( ( myPart & 0b00110000 ) = = 0b00110000 ) ) & & ( ( ( myPart & 0b00110000 ) ! = 0b00000000 ) & & ( negativePart & 0b00110000 ) ! = 0b00000000 ) )
| | ( ( ( negativePart & 0b00110000 ) = = 0b00000000 ) & & ( ( myPart & 0b00110000 ) = = 0b00000000 ) ) )
& &
( ( ( ( ( negativePart & 0b00001100 ) ^ ( myPart & 0b00001100 ) ) ! = 0b00000000 ) & & ( ( ( myPart & 0b00001100 ) ! = 0b00000000 ) & & ( negativePart & 0b00001100 ) ! = 0b00000000 ) )
| | ( ( ( ( negativePart & 0b00001100 ) = = 0b00001100 ) | | ( ( myPart & 0b00001100 ) = = 0b00001100 ) ) & & ( ( ( myPart & 0b00001100 ) ! = 0b00000000 ) & & ( negativePart & 0b00001100 ) ! = 0b00000000 ) )
| | ( ( ( negativePart & 0b00001100 ) = = 0b00000000 ) & & ( ( myPart & 0b00001100 ) = = 0b00000000 ) ) )
& &
( ( ( ( ( negativePart & 0b00000011 ) ^ ( myPart & 0b00000011 ) ) ! = 0b00000000 ) & & ( ( ( myPart & 0b00000011 ) ! = 0b00000000 ) & & ( negativePart & 0b00000011 ) ! = 0b00000000 ) )
| | ( ( ( ( negativePart & 0b00000011 ) = = 0b00000011 ) | | ( ( myPart & 0b00000011 ) = = 0b00000011 ) ) & & ( ( ( myPart & 0b00000011 ) ! = 0b00000000 ) & & ( negativePart & 0b00000011 ) ! = 0b00000000 ) )
| | ( ( ( negativePart & 0b00000011 ) = = 0b00000000 ) & & ( ( myPart & 0b00000011 ) = = 0b00000000 ) ) )
)
2018-01-20 09:40:03 +01:00
{
2017-12-18 22:50:03 +01:00
return true ;
2018-01-20 09:40:03 +01:00
}
2017-12-18 22:50:03 +01:00
return false ;
}
void AbstractionLayer_1 : : shift ( uint8_t & Part , int shifts )
{
Part = Part > > ( shifts * 2 ) | Part < < sizeof ( uint8_t ) * 8 - ( shifts * 2 ) ;
}
2017-12-23 10:11:07 +01:00
void AbstractionLayer_1_Properties : : shift ( int shifts )
{
this - > m_connections = this - > m_connections > > ( shifts * 2 ) | this - > m_connections < < sizeof ( uint8_t ) * 8 - ( shifts * 2 ) ;
}
void AbstractionLayer_1_Properties : : print ( )
{
std : : cout < < std : : bitset < 8 > ( this - > m_connections ) ;
}
2017-12-29 12:07:56 +01:00
Mat analyseParts : : makeBorder ( Mat & im_bw ) {
Mat im_part ;
Scalar value = ( 0 , 0 , 0 ) ;
Point center = findCenter ( im_bw ) ;
copyMakeBorder ( im_bw , im_part , abs ( ( IMG_SIZE / 2 ) - center . y ) , abs ( ( IMG_SIZE / 2 ) - ( im_bw . rows - center . y ) ) , abs ( ( IMG_SIZE / 2 ) - center . x ) , abs ( ( IMG_SIZE / 2 ) - ( im_bw . cols - center . x ) ) , BORDER_CONSTANT , value ) ;
return im_part ;
}
Mat analyseParts : : readImages ( int count )
{
char name [ 100 ] ;
Mat corr ;
Mat ref_gray ;
sprintf ( name , PATH , count ) ;
Mat src = imread ( name , 1 ) ;
if ( ! src . data )
2017-12-29 14:33:22 +01:00
{
2017-12-29 12:07:56 +01:00
cerr < < " Problem loading image!!! " < < endl ;
2017-12-29 14:33:22 +01:00
return src ;
}
2017-12-29 12:07:56 +01:00
if ( DISPLAY ) imshow ( " src " , src ) ;
Mat im_gray , im_bw ;
cvtColor ( src , im_gray , CV_RGB2GRAY ) ;
im_bw = ( im_gray > 220 ) ;
im_bw = 255 - im_bw ;
im_bw = makeBorder ( im_bw ) ;
return im_bw ;
}
Mat analyseParts : : morphDilateErode ( Mat & im_bw )
{
Mat dst = im_bw . clone ( ) ;
int operation = 3 ;
int morph_size = 2.4 ;
int dilation_size = 2 ;
int dilation_size1 = 1.5 ;
int erosion_size = 2 ;
int erosion_type = MORPH_RECT ;
int dilation_type = MORPH_RECT ;
Mat element = getStructuringElement ( 0 , Size ( 2 * morph_size + 1 , 2 * morph_size + 1 ) , Point ( morph_size , morph_size ) ) ;
Mat element1 = getStructuringElement ( dilation_type , Size ( 2 * dilation_size + 1 , 2 * dilation_size + 1 ) , Point ( dilation_size , dilation_size ) ) ;
Mat element3 = getStructuringElement ( dilation_type , Size ( 2 * dilation_size1 + 1 , 2 * dilation_size1 + 1 ) , Point ( dilation_size1 , dilation_size1 ) ) ;
Mat element2 = getStructuringElement ( erosion_type , Size ( 2 * erosion_size , 2 * erosion_size ) , Point ( erosion_size , erosion_size ) ) ;
morphologyEx ( im_bw , dst , operation , element ) ;
dilate ( dst , dst , element ) ;
erode ( dst , dst , element2 ) ;
return dst ;
}
vector < vector < Point > > analyseParts : : findingContours ( Mat & dst )
{
vector < vector < Point > > contours1 ;
vector < vector < Point > > contours ;
vector < Point > poly ;
vector < Vec4i > hierarchy1 ;
vector < Vec4i > hierarchy ;
int dilation_size1 = 1.5 ;
int erosion_size = 2 ;
int erosion_type = MORPH_RECT ;
int dilation_type = MORPH_RECT ;
Mat element3 = getStructuringElement ( dilation_type , Size ( 2 * dilation_size1 + 1 , 2 * dilation_size1 + 1 ) , Point ( dilation_size1 , dilation_size1 ) ) ;
Mat element2 = getStructuringElement ( erosion_type , Size ( 2 * erosion_size , 2 * erosion_size ) , Point ( erosion_size , erosion_size ) ) ;
Mat dst1 = Mat : : zeros ( dst . size ( ) , CV_8UC1 ) ;
findContours ( dst , contours1 , hierarchy1 , CV_RETR_EXTERNAL , CV_CHAIN_APPROX_TC89_L1 , Point ( 0 , 0 ) ) ;
for ( int i = 0 ; i < contours1 . size ( ) ; i + + ) {
drawContours ( dst1 , contours1 , i , Scalar ( 255 , 255 , 255 ) , 2 , 8 , hierarchy1 , 0 ) ;
}
dilate ( dst1 , dst1 , element3 ) ;
erode ( dst1 , dst1 , element2 ) ;
findContours ( dst1 , contours , hierarchy , CV_RETR_CCOMP , CV_CHAIN_APPROX_SIMPLE , Point ( 0 , 0 ) ) ;
return contours ;
}
Mat analyseParts : : polyApprox ( vector < vector < Point > > & contours )
{
vector < vector < Point > > largestContour ;
largestContour . resize ( contours . size ( ) ) ;
int erosion_size = 2 ;
int erosion_type = MORPH_RECT ;
Mat element2 = getStructuringElement ( erosion_type , Size ( 2 * erosion_size , 2 * erosion_size ) , Point ( erosion_size , erosion_size ) ) ;
int index = 0 ;
double area = 0.0 ;
int strength = 5 ;
vector < Vec4i > hierarchy ;
Mat mask_gray ;
for ( int i = 0 ; i < contours . size ( ) ; i + + ) {
approxPolyDP ( Mat ( contours [ i ] ) , largestContour [ index ] , strength , true ) ;
index + + ;
}
Mat mask = Mat : : zeros ( Point ( IMG_SIZE , IMG_SIZE ) , CV_8UC3 ) ;
for ( int i = 0 ; i < largestContour . size ( ) ; i + + ) {
area = contourArea ( largestContour [ i ] ) ;
if ( area > 500 )
drawContours ( mask , largestContour , i , Scalar ( 255 , 255 , 255 ) , CV_FILLED , 8 , hierarchy , 0 ) ;
}
erode ( mask , mask , element2 ) ;
cvtColor ( mask , mask_gray , CV_RGB2GRAY ) ;
mask_gray = ( mask_gray > 200 ) ;
return mask_gray ;
}
Mat createEmpty ( Point size , int color ) {
if ( color ) {
Mat empty = Mat : : zeros ( size , CV_8UC3 ) ;
return empty ;
} else {
Mat empty = Mat : : zeros ( size , CV_8UC1 ) ;
return empty ;
}
}
float analyseParts : : lengthTwoPoints ( Point one , Point two ) {
float length = 0 ;
length = sqrt ( ( one . x - two . x ) * ( one . x - two . x ) + ( one . y - two . y ) * ( one . y - two . y ) ) ;
return length ;
}
float analyseParts : : angle ( Point one , Point two , Point three ) {
float angle = 0 ;
float disa , disb , disc ;
disa = lengthTwoPoints ( two , three ) ;
disb = lengthTwoPoints ( one , three ) ;
disc = lengthTwoPoints ( one , two ) ;
angle = acos ( ( ( disa * disa ) + ( disc * disc ) - ( disb * disb ) ) / ( 2 * disa * disc ) ) ;
angle = angle * 180 / CV_PI ;
return angle ;
}
2017-12-29 14:33:22 +01:00
bool analyseParts : : getImages ( ) {
2017-12-29 12:07:56 +01:00
Details mask ;
Mat src ;
vector < vector < Point > > contours ;
vector < Vec4i > hierarchy ;
vector < Point > corners ;
2018-01-20 20:03:34 +01:00
vector < double > lens ;
2017-12-29 12:07:56 +01:00
vector < Mat > puzzleimages ;
vector < vector < Point > > contours1 ;
Mat mask_gray ;
for ( int i = 0 ; i < nr_parts ; i + + ) {
if ( DISPLAY ) cout < < " Bild " < < i < < endl ;
Mat im_bw = readImages ( i ) ;
2017-12-29 14:33:22 +01:00
if ( ! im_bw . data )
{
cerr < < " Error: No pic found!! " < < endl ;
return false ;
}
2017-12-29 12:07:56 +01:00
Mat dst = morphDilateErode ( im_bw ) ;
contours1 = findingContours ( dst ) ;
mask_gray = polyApprox ( contours1 ) ;
mask . setImage ( mask_gray ) ;
mask . setCenter ( findCenter ( mask_gray ) ) ;
findContours ( mask_gray , contours , hierarchy , CV_RETR_CCOMP , CV_CHAIN_APPROX_SIMPLE , Point ( 0 , 0 ) ) ;
mask . setContour ( contours ) ;
mask . setHierarchy ( hierarchy ) ;
corners = findCorners ( contours [ 0 ] , mask . getCenter ( ) ) ;
2017-12-29 15:00:43 +01:00
if ( ( corners . empty ( ) ) | | ( corners . size ( ) < 4 ) )
{
cerr < < " Error occured in findCorners " < < endl ;
return false ;
}
2017-12-29 12:07:56 +01:00
mask . setCorners ( corners ) ;
2018-01-22 19:20:25 +01:00
vector < double > tmpPoempelPosition = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } ; //TODO somehow make this code section bearable
mask . setTabs ( analyseContour ( corners , contours [ 0 ] , tmpPoempelPosition ) ) ;
mask . setPoempelPosition ( tmpPoempelPosition ) ;
2018-01-20 20:03:34 +01:00
mask . setLens ( analyseLens ( lens , corners ) ) ;
mask . setMidpoint ( calcMidpoint ( corners ) ) ;
2017-12-29 12:07:56 +01:00
masks . push_back ( mask ) ;
destroyAllWindows ( ) ;
}
2017-12-29 14:33:22 +01:00
return true ;
2017-12-29 12:07:56 +01:00
}
Point analyseParts : : findCenter ( Mat img ) {
Mat im = img . clone ( ) ;
Canny ( im , im , 800 , 1000 , 3 ) ;
vector < vector < Point > > contours ;
vector < Vec4i > hierarchy ;
findContours ( im , contours , hierarchy , CV_RETR_TREE , CV_CHAIN_APPROX_SIMPLE , Point ( 0 , 0 ) ) ;
Moments m = moments ( im , true ) ;
Point center ( m . m10 / m . m00 , m . m01 / m . m00 ) ;
return center ;
}
2018-01-20 20:03:34 +01:00
float pitch2Points ( Point one , Point two ) //In Header
{
float pitch = 0 ;
float deltay = 0 ;
float deltax = 0 ;
deltay = abs ( one . y - two . y ) ;
deltax = abs ( one . x - two . x ) ;
if ( deltax = = 0 )
deltax = 0.1 ;
if ( deltay = = 0 )
deltay = 0.1 ;
pitch = deltay / deltax ;
return pitch ;
}
2017-12-29 12:07:56 +01:00
vector < Point > analyseParts : : findCorners ( vector < Point > contour , Point center ) {
int minContourPoint = 5 ;
vector < vector < Point > > quad_contour ;
vector < Point > buf0 ;
vector < Point > buf1 ;
vector < Point > buf2 ;
vector < Point > buf3 ;
for ( int i = 0 ; i < contour . size ( ) ; i + + ) {
if ( contour [ i ] . x > center . x & & contour [ i ] . y > center . y ) {
buf0 . push_back ( contour [ i ] ) ;
} else if ( contour [ i ] . x < center . x & & contour [ i ] . y > center . y ) {
buf1 . push_back ( contour [ i ] ) ;
} else if ( contour [ i ] . x > center . x & & contour [ i ] . y < center . y ) {
buf2 . push_back ( contour [ i ] ) ;
} else if ( contour [ i ] . x < center . x & & contour [ i ] . y < center . y ) {
buf3 . push_back ( contour [ i ] ) ;
}
}
2017-12-29 15:00:43 +01:00
if ( ( buf0 . empty ( ) ) | | ( buf1 . empty ( ) ) | | ( buf2 . empty ( ) ) | | ( buf3 . empty ( ) ) )
{
// return an empty vector if not all corners were found!
return vector < Point > ( ) ;
}
2017-12-29 12:07:56 +01:00
quad_contour . push_back ( buf0 ) ;
quad_contour . push_back ( buf1 ) ;
quad_contour . push_back ( buf2 ) ;
quad_contour . push_back ( buf3 ) ;
Mat drawing = createEmpty ( Point ( IMG_SIZE , IMG_SIZE ) , 1 ) ;
for ( int j = 0 ; j < 4 ; j + + ) {
for ( int i = 0 ; i < quad_contour [ j ] . size ( ) ; i + + ) {
circle ( drawing , quad_contour [ j ] [ i ] , 2 , Scalar ( abs ( j + 2 ) * 50 , abs ( j + 2 ) * 20 , 0 ) , 3 , 8 ) ;
}
}
circle ( drawing , center , 2 , Scalar ( 0 , 255 , 255 ) , 3 , 8 , 0 ) ;
/*finde ecke rechts unten*/
vector < Point > corners ;
float dist = 0 ;
float max_dist = 0 ;
int max_idx = 0 ;
int num = 0 ;
float distToCenter = 0 ;
for ( int i = 0 ; i < ( IMG_SIZE / 2 ) ; i + + ) {
for ( int j = 0 ; j < quad_contour [ 0 ] . size ( ) ; j + + ) {
if ( quad_contour [ 0 ] [ j ] . x > center . x + i & & quad_contour [ 0 ] [ j ] . y > center . y + i )
num + + ;
}
if ( num < minContourPoint ) {
dist = i ;
i = ( IMG_SIZE / 2 ) ;
}
num = 0 ;
}
for ( int j = 0 ; j < quad_contour [ 0 ] . size ( ) ; j + + ) {
if ( quad_contour [ 0 ] [ j ] . x > center . x + dist & & quad_contour [ 0 ] [ j ] . y > center . y + dist ) {
distToCenter = lengthTwoPoints ( center , quad_contour [ 0 ] [ j ] ) ;
if ( distToCenter > max_dist ) {
max_dist = distToCenter ;
max_idx = j ;
}
}
}
corners . push_back ( quad_contour [ 0 ] [ max_idx ] ) ;
line ( drawing , Point ( center . x + dist , ( IMG_SIZE / 2 ) ) , Point ( center . x + dist , IMG_SIZE ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
line ( drawing , Point ( ( IMG_SIZE / 2 ) , center . y + dist ) , Point ( IMG_SIZE , center . y + dist ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
circle ( drawing , quad_contour [ 0 ] [ max_idx ] , 5 , Scalar ( 50 , 100 , 255 ) , 5 , 8 ) ;
2017-12-29 15:00:43 +01:00
/*finde ecke links unten*/
2017-12-29 12:07:56 +01:00
dist = 0 ;
max_dist = 0 ;
max_idx = 0 ;
num = 0 ;
distToCenter = 0 ;
for ( int i = 0 ; i < ( IMG_SIZE / 2 ) ; i + + ) {
for ( int j = 0 ; j < quad_contour [ 1 ] . size ( ) ; j + + ) {
if ( quad_contour [ 1 ] [ j ] . x < center . x - i & & quad_contour [ 1 ] [ j ] . y > center . y + i )
num + + ;
}
if ( num < minContourPoint ) {
dist = i ;
i = ( IMG_SIZE / 2 ) ;
}
num = 0 ;
}
for ( int j = 0 ; j < quad_contour [ 1 ] . size ( ) ; j + + ) {
if ( quad_contour [ 1 ] [ j ] . x < center . x - dist & & quad_contour [ 1 ] [ j ] . y > center . y + dist ) {
distToCenter = lengthTwoPoints ( center , quad_contour [ 1 ] [ j ] ) ;
if ( distToCenter > max_dist ) {
max_dist = distToCenter ;
max_idx = j ;
}
}
}
corners . push_back ( quad_contour [ 1 ] [ max_idx ] ) ;
line ( drawing , Point ( center . x - dist , ( IMG_SIZE / 2 ) ) , Point ( center . x - dist , IMG_SIZE ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
line ( drawing , Point ( ( IMG_SIZE / 2 ) , center . y + dist ) , Point ( 0 , center . y + dist ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
circle ( drawing , quad_contour [ 1 ] [ max_idx ] , 5 , Scalar ( 50 , 100 , 255 ) , 5 , 8 ) ;
2017-12-29 15:00:43 +01:00
/*finde ecke rechts oben*/
2017-12-29 12:07:56 +01:00
dist = 0 ;
max_dist = 0 ;
max_idx = 0 ;
num = 0 ;
distToCenter = 0 ;
for ( int i = 0 ; i < ( IMG_SIZE / 2 ) ; i + + ) {
for ( int j = 0 ; j < quad_contour [ 2 ] . size ( ) ; j + + ) {
if ( quad_contour [ 2 ] [ j ] . x > center . x + i & & quad_contour [ 2 ] [ j ] . y < center . y - i )
num + + ;
}
if ( num < minContourPoint ) {
dist = i ;
i = ( IMG_SIZE / 2 ) ;
}
num = 0 ;
}
for ( int j = 0 ; j < quad_contour [ 2 ] . size ( ) ; j + + ) {
if ( quad_contour [ 2 ] [ j ] . x > center . x + dist & & quad_contour [ 2 ] [ j ] . y < center . y - dist ) {
distToCenter = lengthTwoPoints ( center , quad_contour [ 2 ] [ j ] ) ;
if ( distToCenter > max_dist ) {
max_dist = distToCenter ;
max_idx = j ;
}
}
}
corners . push_back ( quad_contour [ 2 ] [ max_idx ] ) ;
line ( drawing , Point ( center . x + dist , ( IMG_SIZE / 2 ) ) , Point ( center . x + dist , 0 ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
line ( drawing , Point ( ( IMG_SIZE / 2 ) , center . y - dist ) , Point ( IMG_SIZE , center . y - dist ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
circle ( drawing , quad_contour [ 2 ] [ max_idx ] , 5 , Scalar ( 50 , 100 , 255 ) , 5 , 8 ) ;
2017-12-29 15:00:43 +01:00
/*finde ecke links oben*/
2017-12-29 12:07:56 +01:00
dist = 0 ;
max_dist = 0 ;
max_idx = 0 ;
num = 0 ;
distToCenter = 0 ;
for ( int i = 0 ; i < ( IMG_SIZE / 2 ) ; i + + ) {
for ( int j = 0 ; j < quad_contour [ 3 ] . size ( ) ; j + + ) {
if ( quad_contour [ 3 ] [ j ] . x < center . x - i & & quad_contour [ 3 ] [ j ] . y < center . y - i )
num + + ;
}
if ( num < minContourPoint ) {
dist = i ;
i = ( IMG_SIZE / 2 ) ;
}
num = 0 ;
}
for ( int j = 0 ; j < quad_contour [ 3 ] . size ( ) ; j + + ) {
if ( quad_contour [ 3 ] [ j ] . x < center . x - dist & & quad_contour [ 3 ] [ j ] . y < center . y - dist ) {
distToCenter = lengthTwoPoints ( center , quad_contour [ 3 ] [ j ] ) ;
if ( distToCenter > max_dist ) {
max_dist = distToCenter ;
max_idx = j ;
}
}
}
corners . push_back ( quad_contour [ 3 ] [ max_idx ] ) ;
line ( drawing , Point ( center . x - dist , ( IMG_SIZE / 2 ) ) , Point ( center . x - dist , 0 ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
line ( drawing , Point ( 0 , center . y - dist ) , Point ( ( IMG_SIZE / 2 ) , center . y - dist ) , Scalar ( 255 , 0 , 255 ) , 3 , 8 ) ;
circle ( drawing , quad_contour [ 3 ] [ max_idx ] , 5 , Scalar ( 50 , 100 , 255 ) , 5 , 8 ) ;
if ( DISPLAY ) imshow ( " draw " , drawing ) ;
2018-01-20 20:07:55 +01:00
return corners ;
2017-12-29 12:07:56 +01:00
}
2018-01-22 19:20:25 +01:00
unsigned char analyseParts : : analyseContour ( vector < Point > corners , vector < Point > contour , vector < double > & PoempelPosition ) {
2017-12-29 12:07:56 +01:00
vector < Point > contour_right ;
vector < Point > contour_top ;
vector < Point > contour_left ;
vector < Point > contour_bottom ;
2018-01-20 20:03:34 +01:00
2017-12-29 12:07:56 +01:00
int count = 0 ;
int corner0 = 0 , corner1 = 0 , corner2 = 0 , corner3 = 0 ;
for ( int i = 0 ; i < contour . size ( ) ; i + + ) {
2018-01-20 20:03:34 +01:00
//cout << "contour " << contour[i] << endl;
2017-12-29 12:07:56 +01:00
if ( contour [ i ] = = corners [ 0 ] )
corner0 = i ;
2018-01-20 20:03:34 +01:00
else if ( contour [ i ] = = corners [ 1 ] )
2017-12-29 12:07:56 +01:00
corner1 = i ;
2018-01-20 20:03:34 +01:00
else if ( contour [ i ] = = corners [ 2 ] )
2017-12-29 12:07:56 +01:00
corner2 = i ;
2018-01-20 20:03:34 +01:00
else if ( contour [ i ] = = corners [ 3 ] )
2017-12-29 12:07:56 +01:00
corner3 = i ;
}
2018-01-20 20:03:34 +01:00
2017-12-29 12:07:56 +01:00
count = corner0 ;
while ( contour [ count ] ! = contour [ corner2 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_right . push_back ( contour [ count ] ) ;
}
count = corner2 ;
while ( contour [ count ] ! = contour [ corner3 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_top . push_back ( contour [ count ] ) ;
}
count = corner3 ;
while ( contour [ count ] ! = contour [ corner1 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_left . push_back ( contour [ count ] ) ;
}
count = corner1 ;
while ( contour [ count ] ! = contour [ corner0 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_bottom . push_back ( contour [ count ] ) ;
}
2018-01-20 20:03:34 +01:00
contour_right . insert ( contour_right . begin ( ) , corners [ 0 ] ) ;
contour_right . push_back ( corners [ 2 ] ) ;
contour_top . insert ( contour_top . begin ( ) , corners [ 2 ] ) ;
contour_top . push_back ( corners [ 3 ] ) ;
contour_left . insert ( contour_left . begin ( ) , corners [ 3 ] ) ;
contour_left . push_back ( corners [ 1 ] ) ;
contour_bottom . insert ( contour_bottom . begin ( ) , corners [ 1 ] ) ;
contour_bottom . push_back ( corners [ 0 ] ) ;
/*-------------------------------------*/
//ecken Korrektur rechte Kontur
/*-------------------------------------*/
vector < Point > contour_r ;
double laenge = 0 ;
int idx = 0 , counter = 0 , c = 0 , d = 0 ;
while ( counter < ( contour_right . size ( ) - 1 ) ) {
counter + + ;
c + + ;
laenge = sqrt ( ( contour_right [ idx ] . x - contour_right [ idx + c ] . x ) * ( contour_right [ idx ] . x - contour_right [ idx + c ] . x ) +
( contour_right [ idx ] . y - contour_right [ idx + c ] . y ) * ( contour_right [ idx ] . y - contour_right [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
d + + ;
contour_r . push_back ( contour_right [ idx ] ) ;
idx = counter ;
c = 0 ;
}
}
float k = 0 ;
int correct_count = 0 ;
int correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_r . size ( ) - 2 ; correct_count + + ) {
k = pitch2Points ( contour_r [ correct_count ] , contour_r [ correct_count + 1 ] ) ;
//cout << "unten: " << k << endl;
if ( k > = 2 ) {
correct_idx = correct_count ;
correct_count = contour_r . size ( ) ;
}
if ( correct_count > 500 )
break ;
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 0 ] = contour_r [ correct_idx ] ;
}
/*-----------------------------------*/
vector < Point > contour_r1 ;
laenge = 0 ;
idx = contour_right . size ( ) - 1 , counter = contour_right . size ( ) - 1 , c = 0 , d = 0 ;
while ( counter > 1 ) {
counter - - ;
c - - ;
laenge = sqrt ( ( contour_right [ idx ] . x - contour_right [ idx + c ] . x ) * ( contour_right [ idx ] . x - contour_right [ idx + c ] . x ) +
( contour_right [ idx ] . y - contour_right [ idx + c ] . y ) * ( contour_right [ idx ] . y - contour_right [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
contour_r1 . push_back ( contour_right [ idx ] ) ;
idx = counter ;
c = 0 ;
}
}
k = 0 ;
correct_count = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_r1 . size ( ) - 2 ; correct_count + + ) {
k = pitch2Points ( contour_r1 [ correct_count ] , contour_r1 [ correct_count + 1 ] ) ;
// cout << "oben: " << k << endl;
if ( k > = 2 ) {
correct_idx = correct_count ;
correct_count = contour_r1 . size ( ) ;
}
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 2 ] = contour_r1 [ correct_idx ] ;
}
/*-----------------------------------*/
/*-------------------------------------*/
//ecken Korrektur links Kontur
/*-------------------------------------*/
vector < Point > contour_l ;
laenge = 0 ;
idx = 0 , counter = 0 , c = 0 , d = 0 ;
while ( counter < ( contour_left . size ( ) - 1 ) ) {
counter + + ;
c + + ;
laenge = sqrt ( ( contour_left [ idx ] . x - contour_left [ idx + c ] . x ) * ( contour_left [ idx ] . x - contour_left [ idx + c ] . x ) +
( contour_left [ idx ] . y - contour_left [ idx + c ] . y ) * ( contour_left [ idx ] . y - contour_left [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
d + + ;
contour_l . push_back ( contour_left [ idx ] ) ;
idx = counter ;
c = 0 ;
}
}
k = 0 ;
correct_count = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_l . size ( ) - 2 ; correct_count + + ) {
k = pitch2Points ( contour_l [ correct_count ] , contour_l [ correct_count + 1 ] ) ;
// cout << "oben _links: " << k << endl;
if ( k > = 2 ) {
correct_idx = correct_count ;
correct_count = contour_l . size ( ) ;
}
if ( correct_count > 500 )
break ;
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 3 ] = contour_l [ correct_idx ] ;
}
/*-----------------------------------*/
vector < Point > contour_l1 ;
laenge = 0 ;
idx = contour_left . size ( ) - 1 , counter = contour_left . size ( ) - 1 , c = 0 , d = 0 ;
while ( counter > 1 ) {
counter - - ;
c - - ;
laenge = sqrt ( ( contour_left [ idx ] . x - contour_left [ idx + c ] . x ) * ( contour_left [ idx ] . x - contour_left [ idx + c ] . x ) +
( contour_left [ idx ] . y - contour_left [ idx + c ] . y ) * ( contour_left [ idx ] . y - contour_left [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
contour_l1 . push_back ( contour_left [ idx ] ) ;
idx = counter ;
c = 0 ;
}
if ( correct_count > 500 )
break ;
}
k = 0 ;
correct_count = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_l1 . size ( ) ; correct_count + + ) {
k = pitch2Points ( contour_l1 [ correct_count ] , contour_l1 [ correct_count + 1 ] ) ;
if ( k > = 2 ) {
// cout << "end _links: " << endl;
correct_idx = correct_count ;
correct_count = contour_l1 . size ( ) ;
}
if ( correct_count > 500 )
break ;
}
/*-----------------------------------*/
// cout << "unten _links_correct: " << correct_idx << endl;
if ( correct_idx > 0 ) {
corners [ 1 ] = contour_l1 [ correct_idx ] ;
}
/*-----------------------------------*/
/*-------------------------------------*/
//ecken Korrektur oben Kontur
/*-------------------------------------*/
vector < Point > contour_t ;
laenge = 0 ;
idx = 0 , counter = 0 , c = 0 , d = 0 ;
while ( counter < ( contour_top . size ( ) - 1 ) ) {
counter + + ;
c + + ;
laenge = sqrt ( ( contour_top [ idx ] . x - contour_top [ idx + c ] . x ) * ( contour_top [ idx ] . x - contour_top [ idx + c ] . x ) +
( contour_top [ idx ] . y - contour_top [ idx + c ] . y ) * ( contour_top [ idx ] . y - contour_top [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
d + + ;
contour_t . push_back ( contour_top [ idx ] ) ;
idx = counter ;
c = 0 ;
}
if ( correct_count > 500 )
break ;
}
k = 0 ;
correct_count = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_t . size ( ) - 2 ; correct_count + + ) {
k = pitch2Points ( contour_t [ correct_count ] , contour_t [ correct_count + 1 ] ) ;
// cout << "top _rechts: " << k << endl;
if ( k < = 2 ) {
correct_idx = correct_count ;
correct_count = contour_t . size ( ) ;
}
if ( correct_count > 500 )
break ;
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 2 ] = contour_t [ correct_idx ] ;
}
/*-----------------------------------*/
vector < Point > contour_t1 ;
laenge = 0 ;
idx = contour_top . size ( ) - 1 , counter = contour_top . size ( ) - 1 , c = 0 , d = 0 ;
while ( counter > 1 ) {
counter - - ;
c - - ;
laenge = sqrt ( ( contour_top [ idx ] . x - contour_top [ idx + c ] . x ) * ( contour_top [ idx ] . x - contour_top [ idx + c ] . x ) +
( contour_top [ idx ] . y - contour_top [ idx + c ] . y ) * ( contour_top [ idx ] . y - contour_top [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
contour_t1 . push_back ( contour_top [ idx ] ) ;
idx = counter ;
c = 0 ;
}
if ( correct_count > 500 )
break ;
}
k = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_t1 . size ( ) ; correct_count + + ) {
k = pitch2Points ( contour_t1 [ correct_count ] , contour_t1 [ correct_count + 1 ] ) ;
if ( k < 2 ) {
correct_idx = correct_count ;
correct_count = contour_t1 . size ( ) ;
}
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 3 ] = contour_t1 [ correct_idx ] ;
}
/*-------------------------------------*/
/*-------------------------------------*/
//ecken Korrektur unten Kontur
/*-------------------------------------*/
vector < Point > contour_b ;
laenge = 0 ;
idx = 0 , counter = 0 , c = 0 , d = 0 ;
while ( counter < ( contour_bottom . size ( ) - 1 ) ) {
counter + + ;
c + + ;
laenge = sqrt ( ( contour_bottom [ idx ] . x - contour_bottom [ idx + c ] . x ) * ( contour_bottom [ idx ] . x - contour_bottom [ idx + c ] . x ) +
( contour_bottom [ idx ] . y - contour_bottom [ idx + c ] . y ) * ( contour_bottom [ idx ] . y - contour_bottom [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
d + + ;
contour_b . push_back ( contour_bottom [ idx ] ) ;
idx = counter ;
c = 0 ;
}
if ( correct_count > 500 )
break ;
}
k = 0 ;
correct_count = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_b . size ( ) - 2 ; correct_count + + ) {
k = pitch2Points ( contour_b [ correct_count ] , contour_b [ correct_count + 1 ] ) ;
// cout << "bottom _rechts: " << k << endl;
if ( k < = 2 ) {
correct_idx = correct_count ;
correct_count = contour_b . size ( ) ;
}
if ( correct_count > 500 )
break ;
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 1 ] = contour_b [ correct_idx ] ;
}
/*-----------------------------------*/
vector < Point > contour_b1 ;
laenge = 0 ;
idx = contour_bottom . size ( ) - 1 , counter = contour_bottom . size ( ) - 1 , c = 0 , d = 0 ;
while ( counter > 1 ) {
counter - - ;
c - - ;
laenge = sqrt ( ( contour_bottom [ idx ] . x - contour_bottom [ idx + c ] . x ) * ( contour_bottom [ idx ] . x - contour_bottom [ idx + c ] . x ) +
( contour_bottom [ idx ] . y - contour_bottom [ idx + c ] . y ) * ( contour_bottom [ idx ] . y - contour_bottom [ idx + c ] . y ) ) ;
if ( laenge > 4 ) {
contour_b1 . push_back ( contour_bottom [ idx ] ) ;
idx = counter ;
c = 0 ;
}
if ( correct_count > 500 )
break ;
}
k = 0 ;
correct_idx = 0 ;
for ( correct_count = 0 ; correct_count < contour_b1 . size ( ) ; correct_count + + ) {
k = pitch2Points ( contour_b1 [ correct_count ] , contour_b1 [ correct_count + 1 ] ) ;
if ( k < 2 ) {
correct_idx = correct_count ;
correct_count = contour_b1 . size ( ) ;
}
if ( correct_count > 500 )
break ;
}
/*-----------------------------------*/
if ( correct_idx > 0 ) {
corners [ 0 ] = contour_b1 [ correct_idx ] ;
}
/*-----------------------------------*/
/*Korrektur Contour*/
vector < Point > contour_right_new ;
vector < Point > contour_top_new ;
vector < Point > contour_left_new ;
vector < Point > contour_bottom_new ;
for ( int i = 0 ; i < contour . size ( ) ; i + + ) {
if ( contour [ i ] = = corners [ 0 ] )
corner0 = i ;
else if ( contour [ i ] = = corners [ 1 ] )
corner1 = i ;
else if ( contour [ i ] = = corners [ 2 ] )
corner2 = i ;
else if ( contour [ i ] = = corners [ 3 ] )
corner3 = i ;
}
count = corner0 ;
while ( contour [ count ] ! = contour [ corner2 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_right_new . push_back ( contour [ count ] ) ;
}
count = corner2 ;
while ( contour [ count ] ! = contour [ corner3 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_top_new . push_back ( contour [ count ] ) ;
}
count = corner3 ;
while ( contour [ count ] ! = contour [ corner1 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_left_new . push_back ( contour [ count ] ) ;
}
count = corner1 ;
while ( contour [ count ] ! = contour [ corner0 ] ) {
count + + ;
count % = contour . size ( ) ;
contour_bottom_new . push_back ( contour [ count ] ) ;
}
contour_right_new . insert ( contour_right_new . begin ( ) , corners [ 0 ] ) ;
contour_right_new . push_back ( corners [ 2 ] ) ;
contour_top_new . insert ( contour_top_new . begin ( ) , corners [ 2 ] ) ;
contour_top_new . push_back ( corners [ 3 ] ) ;
contour_left_new . insert ( contour_left_new . begin ( ) , corners [ 3 ] ) ;
contour_left_new . push_back ( corners [ 1 ] ) ;
contour_bottom_new . insert ( contour_bottom_new . begin ( ) , corners [ 1 ] ) ;
contour_bottom_new . push_back ( corners [ 0 ] ) ;
/*----------------------*/
float ref_right = ( corners [ 0 ] . x + corners [ 2 ] . x ) / 2 ;
float ref_top = ( corners [ 2 ] . y + corners [ 3 ] . y ) / 2 ;
float ref_left = ( corners [ 3 ] . x + corners [ 1 ] . x ) / 2 ;
float ref_bottom = ( corners [ 1 ] . y + corners [ 0 ] . y ) / 2 ;
/*---------Suche Poempel Rechts---------------*/
2017-12-29 12:07:56 +01:00
float max_dist = 0 ;
float dist = 0 ;
2018-01-20 20:03:34 +01:00
int max_dist_idx = 0 ;
for ( int i = 0 ; i < contour_right_new . size ( ) ; i + + ) {
dist = abs ( ref_right - contour_right_new [ i ] . x ) ;
2017-12-29 12:07:56 +01:00
if ( dist > max_dist ) {
max_dist = dist ;
2018-01-20 20:03:34 +01:00
max_dist_idx = i ;
2017-12-29 12:07:56 +01:00
}
}
2018-01-22 19:20:25 +01:00
//saves length between Corners and Poempel right
Point diff = corners [ 2 ] - contour_right_new [ max_dist_idx ] ;
PoempelPosition [ 2 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
diff = corners [ 0 ] - contour_right_new [ max_dist_idx ] ;
PoempelPosition [ 3 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
2018-01-20 20:03:34 +01:00
/*-------------------------------------*/
2017-12-29 12:07:56 +01:00
unsigned char tabs = 0 ;
2018-01-20 20:03:34 +01:00
int poembel_threshold = 15 ;
if ( ref_right - contour_right_new [ max_dist_idx ] . x < = - poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 2 < < RIGHT ) ;
2018-01-20 20:03:34 +01:00
}
if ( ref_right - contour_right_new [ max_dist_idx ] . x > = poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 1 < < RIGHT ) ;
2018-01-20 20:03:34 +01:00
}
if ( abs ( ref_right - contour_right_new [ max_dist_idx ] . x ) < poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 0 < < RIGHT ) ;
2018-01-20 20:03:34 +01:00
}
2017-12-29 12:07:56 +01:00
2018-01-20 20:03:34 +01:00
/*---------Suche Poempel Oben---------------*/
2017-12-29 12:07:56 +01:00
max_dist = 0 ;
dist = 0 ;
2018-01-20 20:03:34 +01:00
max_dist_idx = 0 ;
for ( int i = 0 ; i < contour_top_new . size ( ) ; i + + ) {
dist = abs ( ref_top - contour_top_new [ i ] . y ) ;
2017-12-29 12:07:56 +01:00
if ( dist > max_dist ) {
max_dist = dist ;
2018-01-20 20:03:34 +01:00
max_dist_idx = i ;
2017-12-29 12:07:56 +01:00
}
}
2018-01-22 19:20:25 +01:00
2018-01-23 13:09:58 +01:00
//saves length between Corners and Poempel top
2018-01-22 19:20:25 +01:00
diff = corners [ 3 ] - contour_top_new [ max_dist_idx ] ;
PoempelPosition [ 0 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
diff = corners [ 2 ] - contour_top_new [ max_dist_idx ] ;
PoempelPosition [ 1 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
2018-01-20 20:03:34 +01:00
/*-------------------------------------*/
if ( ref_top - contour_top_new [ max_dist_idx ] . y < = - poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 1 < < TOP ) ;
2018-01-20 20:03:34 +01:00
}
if ( ref_top - contour_top_new [ max_dist_idx ] . y > = poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 2 < < TOP ) ;
2018-01-20 20:03:34 +01:00
}
if ( abs ( ref_top - contour_top_new [ max_dist_idx ] . y ) < poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 0 < < TOP ) ;
2018-01-20 20:03:34 +01:00
}
2017-12-29 12:07:56 +01:00
2018-01-20 20:03:34 +01:00
/*---------Suche Poempel Links---------------*/
2017-12-29 12:07:56 +01:00
max_dist = 0 ;
dist = 0 ;
2018-01-20 20:03:34 +01:00
max_dist_idx = 0 ;
for ( int i = 0 ; i < contour_left_new . size ( ) ; i + + ) {
dist = abs ( ref_left - contour_left_new [ i ] . x ) ;
2017-12-29 12:07:56 +01:00
if ( dist > max_dist ) {
max_dist = dist ;
2018-01-20 20:03:34 +01:00
max_dist_idx = i ;
2017-12-29 12:07:56 +01:00
}
}
2018-01-22 19:20:25 +01:00
2018-01-23 13:09:58 +01:00
//saves length between Corners and Poempel left
2018-01-22 19:20:25 +01:00
diff = corners [ 1 ] - contour_left_new [ max_dist_idx ] ;
PoempelPosition [ 6 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
diff = corners [ 3 ] - contour_left_new [ max_dist_idx ] ;
PoempelPosition [ 7 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
2018-01-20 20:03:34 +01:00
/*-------------------------------------*/
if ( ref_left - contour_left_new [ max_dist_idx ] . x < = - poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 1 < < LEFT ) ;
2018-01-20 20:03:34 +01:00
}
if ( ref_left - contour_left_new [ max_dist_idx ] . x > = poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 2 < < LEFT ) ;
2018-01-20 20:03:34 +01:00
}
if ( abs ( ref_left - contour_left_new [ max_dist_idx ] . x ) < poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 0 < < LEFT ) ;
2018-01-20 20:03:34 +01:00
}
2017-12-29 12:07:56 +01:00
2018-01-22 19:20:25 +01:00
/*---------Suche Poempel Unten---------------*/
2017-12-29 12:07:56 +01:00
max_dist = 0 ;
dist = 0 ;
2018-01-20 20:03:34 +01:00
max_dist_idx = 0 ;
for ( int i = 0 ; i < contour_bottom_new . size ( ) ; i + + ) {
dist = abs ( ref_bottom - contour_bottom_new [ i ] . y ) ;
2017-12-29 12:07:56 +01:00
if ( dist > max_dist ) {
max_dist = dist ;
2018-01-20 20:03:34 +01:00
max_dist_idx = i ;
2017-12-29 12:07:56 +01:00
}
}
2018-01-23 13:09:58 +01:00
//saves length between Corners and Poempel left
2018-01-22 19:20:25 +01:00
diff = corners [ 0 ] - contour_bottom_new [ max_dist_idx ] ;
PoempelPosition [ 4 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
diff = corners [ 1 ] - contour_bottom_new [ max_dist_idx ] ;
PoempelPosition [ 5 ] = cv : : sqrt ( diff . x * diff . x + diff . y * diff . y ) ;
2018-01-20 20:03:34 +01:00
/*-------------------------------------*/
if ( ref_bottom - contour_bottom_new [ max_dist_idx ] . y < = - poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 2 < < BOTTOM ) ;
2018-01-20 20:03:34 +01:00
}
if ( ref_bottom - contour_bottom_new [ max_dist_idx ] . y > = poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 1 < < BOTTOM ) ;
2018-01-20 20:03:34 +01:00
}
if ( abs ( ref_bottom - contour_bottom_new [ max_dist_idx ] . y ) < poembel_threshold ) {
2017-12-29 12:07:56 +01:00
tabs | = ( 0 < < BOTTOM ) ;
2018-01-20 20:03:34 +01:00
}
return tabs ;
}
2017-12-29 12:07:56 +01:00
2018-01-20 20:03:34 +01:00
vector < double > analyseParts : : analyseLens ( vector < double > lens , vector < Point > corners ) {
Point space = corners [ 3 ] - corners [ 2 ] ;
double dist1 = sqrt ( space . x * space . x + space . y * space . y ) ;
lens . push_back ( dist1 ) ;
space = corners [ 2 ] - corners [ 0 ] ;
dist1 = sqrt ( space . x * space . x + space . y * space . y ) ;
lens . push_back ( dist1 ) ;
space = corners [ 0 ] - corners [ 1 ] ;
dist1 = sqrt ( space . x * space . x + space . y * space . y ) ;
lens . push_back ( dist1 ) ;
space = corners [ 1 ] - corners [ 3 ] ;
dist1 = sqrt ( space . x * space . x + space . y * space . y ) ;
lens . push_back ( dist1 ) ;
return lens ;
2017-12-29 12:07:56 +01:00
}
2018-01-20 20:03:34 +01:00
Point analyseParts : : calcMidpoint ( vector < Point > corners ) {
Point midpoint ;
midpoint = ( corners [ 0 ] + corners [ 1 ] + corners [ 2 ] + corners [ 3 ] ) / 4 ;
return midpoint ;
}