[TASK] Finetune hough stuff a bit.

This commit is contained in:
Jan Philipp Timme 2016-01-06 18:37:01 +01:00
parent d809149668
commit c0216de4ae
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class HoughMachine {
QColor pixel = QColor::fromRgb(this->original->getPixel(u, v, LazyImage::DEFAULT));
int h, s, l;
pixel.getHsl(&h, &s, &l);
if(l > 0) {
if(l < 15) {
this->doPixel(u, v);
}
}