AlbumShaper
1.0a3
|
#include <qimage.h>
#include <qstring.h>
#include "sharpen.h"
#include "blur.h"
#include "../tools/imageTools.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)) |
Functions | |
void | sharpenImage (QImage &image, float sigma, QPoint offset, QSize fullImageRes, QImage *edgeImage, bool blurEdges) |
#define MAX | ( | x, | |
y | |||
) | ((x) < (y) ? (x) : (y)) |
Definition at line 16 of file sharpen.cpp.
Referenced by sharpenImage().
#define MIN | ( | x, | |
y | |||
) | ((x) < (y) ? (x) : (y)) |
Definition at line 15 of file sharpen.cpp.
Referenced by sharpenImage().
void sharpenImage | ( | QImage & | image, |
float | sigma, | ||
QPoint | offset, | ||
QSize | fullImageRes, | ||
QImage * | edgeImage, | ||
bool | blurEdges | ||
) |
Definition at line 95 of file sharpen.cpp.
References b1, b2, blurImage(), HSVtoRGB(), MAX, MIN, and RGBtoHSV().
Referenced by GrainEditor::adjustImage().