AlbumShaper
1.0a3
|
#include <qpainter.h>
#include <qimage.h>
#include <math.h>
#include "edgeDetect.h"
#include "blur.h"
#include "../enhancements/contrast.h"
Go to the source code of this file.
Macros | |
#define | MIN(x, y) ((x) < (y) ? (x) : (y)) |
#define | MAX(x, y) ((x) < (y) ? (x) : (y)) |
#define | FILTER_SIZE 5 |
#define FILTER_SIZE 5 |
Referenced by EdgeDetect::smoothLumHistogram().
#define MAX | ( | x, | |
y | |||
) | ((x) < (y) ? (x) : (y)) |
Definition at line 22 of file edgeDetect.cpp.
Referenced by EdgeDetect::computeClusterStatistics(), EdgeDetect::computeClusterThresholds(), EdgeDetect::findPixelClusters(), and EdgeDetect::pixelLum().
#define MIN | ( | x, | |
y | |||
) | ((x) < (y) ? (x) : (y)) |
Definition at line 21 of file edgeDetect.cpp.
Referenced by EdgeDetect::computeClusterStatistics(), EdgeDetect::findPixelClusters(), and EdgeDetect::pixelLum().