[BUGFIX] Fix messed up canny edge orientation sector detection.

This commit is contained in:
Jan Philipp Timme 2016-01-08 02:05:03 +01:00
parent 0468c47858
commit b92850f4c9
2 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ class CannyEdgeMachine {
if(new_dx >= 0 && new_dx >= new_dy) orientation_sector = 0;
if(new_dx >= 0 && new_dx < new_dy) orientation_sector = 1;
if(new_dx < 0 && -new_dx < new_dy) orientation_sector = 2;
if(new_dx < 0 && -new_dy >= new_dy) orientation_sector = 3;
if(new_dx < 0 && -new_dx >= new_dy) orientation_sector = 3;
return orientation_sector;
};

View File

@ -166,7 +166,7 @@ class HoughMachine {
if(new_dx >= 0 && new_dx >= new_dy) orientation_sector = 0;
if(new_dx >= 0 && new_dx < new_dy) orientation_sector = 1;
if(new_dx < 0 && -new_dx < new_dy) orientation_sector = 2;
if(new_dx < 0 && -new_dy >= new_dy) orientation_sector = 3;
if(new_dx < 0 && -new_dx >= new_dy) orientation_sector = 3;
return orientation_sector;
};