]> git.sesse.net Git - kdenlive/blob - src/colorcorrection/rgbparadegenerator.cpp
Scopes: Space optimizations
[kdenlive] / src / colorcorrection / rgbparadegenerator.cpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Simon Andreas Eugster (simon.eu@gmail.com)      *
3  *   This file is part of kdenlive. See www.kdenlive.org.                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10
11 #include "rgbparadegenerator.h"
12
13 #include <QColor>
14 #include <QDebug>
15 #include <QPainter>
16 #include <QPoint>
17 #include <QTime>
18
19 #define CHOP255(a) ((255) < (a) ? (255) : (a))
20
21 const QColor RGBParadeGenerator::colHighlight(255, 245, 235, 255);
22 const QColor RGBParadeGenerator::colLight(200, 200, 200, 255);
23 const QColor RGBParadeGenerator::colSoft(150, 150, 150, 255);
24
25 RGBParadeGenerator::RGBParadeGenerator()
26 {
27 }
28
29 QImage RGBParadeGenerator::calculateRGBParade(const QSize &paradeSize, const QImage &image, const bool &drawAxis, const uint &accelFactor)
30 {
31     Q_ASSERT(accelFactor >= 1);
32
33     if (paradeSize.width() <= 0 || paradeSize.height() <= 0) {
34         return QImage();
35
36     } else {
37         QImage parade(paradeSize, QImage::Format_ARGB32);
38         parade.fill(qRgba(0,0,0,0));
39
40         QRgb *col;
41         QRgb paradeCol;
42         QPoint paradePoint;
43         QPainter davinci(&parade);
44
45         double dx, dy;
46
47         const uint ww = paradeSize.width();
48         const uint wh = paradeSize.height();
49         const uint iw = image.bytesPerLine();
50         const uint ih = image.height();
51         const uint byteCount = iw*ih;
52
53         const uchar offset = 10;
54         const uchar right = 40;
55         const uchar bottom = 40;
56         const int partW = (ww - 2*offset - right) / 3;
57         const int partH = wh - bottom;
58
59         // To get constant brightness, independant of acceleration factor and input image size
60         // Must be a float because the acceleration factor can be high, leading to <1 expected px per px.
61         const float avgPxPerPx = ((float)(image.width() * image.height()) / (500*partW*accelFactor));
62         const float weaken = (avgPxPerPx == 0) ? 1 : (float)4/avgPxPerPx;
63         const int vh = weaken*27;
64         const int vm = weaken*18;
65         const int vl = weaken*9;
66
67         uchar minR = 255, minG = 255, minB = 255, maxR = 0, maxG = 0, maxB = 0, r, g, b;
68         qDebug() << "Expecting about " << avgPxPerPx << " pixels per pixel in the RGB parade. Weakening by " << weaken
69                 << " with an acceleration factor of " << accelFactor;
70
71
72         QImage unscaled(ww-right, 256, QImage::Format_ARGB32);
73         unscaled.fill(qRgba(0, 0, 0, 0));
74
75         const float wPrediv = (float)(partW-1)/(iw-1);
76
77         const uchar *bits = image.bits();
78         const uint stepsize = 4*accelFactor;
79
80         for (uint i = 0, x = 0; i < byteCount; i += stepsize) {
81
82             col = (QRgb *)bits;
83             r = qRed(*col);
84             g = qGreen(*col);
85             b = qBlue(*col);
86
87             dx = x*wPrediv;
88
89             paradePoint = QPoint((int)dx, r);
90             paradeCol = QRgb(unscaled.pixel(paradePoint));
91             unscaled.setPixel(paradePoint, qRgba(CHOP255(vh + qRed(paradeCol)), CHOP255(vm + qGreen(paradeCol)),
92                                            CHOP255(vl + qBlue(paradeCol)), 255));
93
94             paradePoint = QPoint((int) (dx + partW + offset), g);
95             paradeCol = QRgb(unscaled.pixel(paradePoint));
96             unscaled.setPixel(paradePoint, qRgba(CHOP255(vl + qRed(paradeCol)), CHOP255(vh + qGreen(paradeCol)),
97                                            CHOP255(vm + qBlue(paradeCol)), 255));
98
99             paradePoint = QPoint((int) (dx + 2*partW + 2*offset), b);
100             paradeCol = QRgb(unscaled.pixel(paradePoint));
101             unscaled.setPixel(paradePoint, qRgba(CHOP255(vm + qRed(paradeCol)), CHOP255(vl + qGreen(paradeCol)),
102                                            CHOP255(vh + qBlue(paradeCol)), 255));
103
104
105             if (r < minR) { minR = r; }
106             if (g < minG) { minG = g; }
107             if (b < minB) { minB = b; }
108             if (r > maxR) { maxR = r; }
109             if (g > maxG) { maxG = g; }
110             if (b > maxB) { maxB = b; }
111
112             bits += stepsize;
113             x += stepsize;
114             x %= iw; // Modulo image width, to represent the current x position in the image
115         }
116         // Scale the image to the target height. Scaling is not accomplished before because
117         // there are only 255 different values which would lead to gaps if the height is not exactly 255.
118         // Don't use bilinear transformation because the fast transformation meets the goal better.
119         davinci.drawImage(0, 0, unscaled.mirrored(false, true).scaled(unscaled.width(), partH, Qt::IgnoreAspectRatio, Qt::FastTransformation));
120
121         if (drawAxis) {
122             QRgb opx;
123             for (uint i = 0; i <= 10; i++) {
124                 dy = (float)i/10 * (partH-1);
125                 for (uint x = 0; x < ww-right; x++) {
126                     opx = parade.pixel(x, dy);
127                     parade.setPixel(x,dy, qRgba(CHOP255(150+qRed(opx)), 255,
128                                               CHOP255(200+qBlue(opx)), CHOP255(32+qAlpha(opx))));
129                 }
130             }
131         }
132
133
134         const int d = 50;
135
136         // Show numerical minimum
137         if (minR == 0) { davinci.setPen(colHighlight); } else { davinci.setPen(colSoft); }
138         davinci.drawText(0,                     wh, "min: ");
139         if (minG == 0) { davinci.setPen(colHighlight); } else { davinci.setPen(colSoft); }
140         davinci.drawText(partW + offset,        wh, "min: ");
141         if (minB == 0) { davinci.setPen(colHighlight); } else { davinci.setPen(colSoft); }
142         davinci.drawText(2*partW + 2*offset,    wh, "min: ");
143
144         // Show numerical maximum
145         if (maxR == 255) { davinci.setPen(colHighlight); } else { davinci.setPen(colSoft); }
146         davinci.drawText(0,                     wh-20, "max: ");
147         if (maxG == 255) { davinci.setPen(colHighlight); } else { davinci.setPen(colSoft); }
148         davinci.drawText(partW + offset,        wh-20, "max: ");
149         if (maxB == 255) { davinci.setPen(colHighlight); } else { davinci.setPen(colSoft); }
150         davinci.drawText(2*partW + 2*offset,    wh-20, "max: ");
151
152         davinci.setPen(colLight);
153         davinci.drawText(d,                        wh, QString::number(minR, 'f', 0));
154         davinci.drawText(partW + offset + d,       wh, QString::number(minG, 'f', 0));
155         davinci.drawText(2*partW + 2*offset + d,   wh, QString::number(minB, 'f', 0));
156
157         davinci.drawText(d,                        wh-20, QString::number(maxR, 'f', 0));
158         davinci.drawText(partW + offset + d,       wh-20, QString::number(maxG, 'f', 0));
159         davinci.drawText(2*partW + 2*offset + d,   wh-20, QString::number(maxB, 'f', 0));
160
161         davinci.drawText(ww-right+5,            10,      "255");
162         davinci.drawText(ww-right+5,            partH+5,  "0");
163
164
165
166         return parade;
167     }
168 }
169
170 #undef CHOP255