Mercurial > hg > svgui
diff layer/ImageRegionFinder.cpp @ 682:1a0dfcbffaf1
Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 14:06:40 +0000 |
parents | 86a112b5b319 |
children | b66fb15de477 |
line wrap: on
line diff
--- a/layer/ImageRegionFinder.cpp Tue Nov 26 11:16:45 2013 +0000 +++ b/layer/ImageRegionFinder.cpp Tue Nov 26 14:06:40 2013 +0000 @@ -118,7 +118,7 @@ float db = float(qBlue(a) - qBlue(b)) / 255.f; float dist = sqrtf(dr * dr + dg * dg + db * db); -// std::cerr << "thresh=" << thresh << ", dist=" << dist << std::endl; +// cerr << "thresh=" << thresh << ", dist=" << dist << endl; return (dist < thresh); }