mirror of https://github.com/adamdruppe/arsd.git
Fix upscaler
This commit is contained in:
parent
c9790d0c19
commit
0b288d385f
446
pixmappaint.d
446
pixmappaint.d
|
@ -478,6 +478,13 @@ struct UDecimal {
|
||||||
return (_value & 0x0000_0000_FFFF_FFFF);
|
return (_value & 0x0000_0000_FFFF_FFFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public {
|
||||||
|
///
|
||||||
|
int opCmp(const UDecimal that) const {
|
||||||
|
return ((this._value > that._value) - (this._value < that._value));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public {
|
public {
|
||||||
///
|
///
|
||||||
UDecimal opBinary(string op : "+")(const uint rhs) const {
|
UDecimal opBinary(string op : "+")(const uint rhs) const {
|
||||||
|
@ -2984,22 +2991,33 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
enum up = ScalingDirection.up;
|
enum up = ScalingDirection.up;
|
||||||
enum down = ScalingDirection.down;
|
enum down = ScalingDirection.down;
|
||||||
|
|
||||||
const sourceMaxX = (source.width - 1);
|
enum udecimalHalf = UDecimal.make(0x8000_0000);
|
||||||
const sourceMaxY = (source.height - 1);
|
enum uint udecimalHalfFD = udecimalHalf.fractionalDigits;
|
||||||
|
|
||||||
|
enum idxX = 0, idxY = 1;
|
||||||
|
|
||||||
|
const int[2] sourceMax = [
|
||||||
|
(source.width - 1),
|
||||||
|
(source.height - 1),
|
||||||
|
];
|
||||||
|
|
||||||
const UDecimal[2] ratios = [
|
const UDecimal[2] ratios = [
|
||||||
(UDecimal(source.width) / target.width),
|
(UDecimal(source.width) / target.width),
|
||||||
(UDecimal(source.height) / target.height),
|
(UDecimal(source.height) / target.height),
|
||||||
];
|
];
|
||||||
enum idxX = 0, idxY = 1;
|
|
||||||
|
const UDecimal[2] ratiosHalf = [
|
||||||
|
(ratios[idxX] >> 1),
|
||||||
|
(ratios[idxY] >> 1),
|
||||||
|
];
|
||||||
|
|
||||||
// ==== Nearest Neighbor ====
|
// ==== Nearest Neighbor ====
|
||||||
static if (filter == ScalingFilter.nearest) {
|
static if (filter == ScalingFilter.nearest) {
|
||||||
|
|
||||||
Point translate(const Point dstPos) {
|
Point translate(const Point dstPos) {
|
||||||
pragma(inline, true);
|
pragma(inline, true);
|
||||||
const x = (dstPos.x * ratios[0]).floor().castTo!int;
|
const x = (dstPos.x * ratios[idxX]).castTo!int;
|
||||||
const y = (dstPos.y * ratios[1]).floor().castTo!int;
|
const y = (dstPos.y * ratios[idxY]).castTo!int;
|
||||||
return Point(x, y);
|
return Point(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3025,30 +3043,55 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
size_t y = 0;
|
size_t y = 0;
|
||||||
foreach (dstLine; dst) {
|
foreach (dstLine; dst) {
|
||||||
foreach (x, ref pxDst; dstLine) {
|
foreach (x, ref pxDst; dstLine) {
|
||||||
const posDst = Point(x.castTo!int, y.castTo!int);
|
const int[2] posDst = [
|
||||||
|
x.castTo!uint,
|
||||||
|
y.castTo!uint,
|
||||||
|
];
|
||||||
|
|
||||||
const UDecimal[2] posSrc = [
|
const UDecimal[2] posSrc = [
|
||||||
posDst.x * ratios[idxX],
|
posDst[idxX] * ratios[idxX] + ratiosHalf[idxX],
|
||||||
posDst.y * ratios[idxY],
|
posDst[idxY] * ratios[idxY] + ratiosHalf[idxY],
|
||||||
];
|
];
|
||||||
|
|
||||||
const int[2] posSrcX = () {
|
const int[2] posSrcX = () {
|
||||||
int[2] result;
|
int[2] result;
|
||||||
static if (directionX == none) {
|
static if (directionX == none) {
|
||||||
|
const value = posSrc[idxX].castTo!int;
|
||||||
result = [
|
result = [
|
||||||
posSrc[idxX].castTo!int,
|
value,
|
||||||
posSrc[idxX].castTo!int,
|
value,
|
||||||
];
|
];
|
||||||
} else static if (directionX == up) {
|
} else static if (directionX == up) {
|
||||||
result = [
|
if (posSrc[idxX] < udecimalHalf) {
|
||||||
min(sourceMaxX, posSrc[idxX].floor().castTo!int),
|
result = [
|
||||||
min(sourceMaxX, posSrc[idxX].ceil().castTo!int),
|
0,
|
||||||
];
|
0,
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
const floor = posSrc[idxX].castTo!uint;
|
||||||
|
if (posSrc[idxX].fractionalDigits == udecimalHalfFD) {
|
||||||
|
result = [
|
||||||
|
floor,
|
||||||
|
floor,
|
||||||
|
];
|
||||||
|
} else if (posSrc[idxX].fractionalDigits > udecimalHalfFD) {
|
||||||
|
const upper = min((floor + 1), sourceMax[idxX]);
|
||||||
|
result = [
|
||||||
|
floor,
|
||||||
|
upper,
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
result = [
|
||||||
|
floor - 1,
|
||||||
|
floor,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
} else /* if (directionX == down) */ {
|
} else /* if (directionX == down) */ {
|
||||||
const ratioXHalf = (ratios[idxX] >> 1);
|
const ratioXHalf = (ratios[idxX] >> 1);
|
||||||
result = [
|
result = [
|
||||||
max((posSrc[idxX] - ratioXHalf).roundEven().castTo!int, 0),
|
max((posSrc[idxX] - ratioXHalf).roundEven().castTo!uint, 0),
|
||||||
min((posSrc[idxX] + ratioXHalf).roundEven().castTo!int, sourceMaxX),
|
min((posSrc[idxX] + ratioXHalf).roundEven().castTo!uint, sourceMax[idxX]),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
@ -3062,15 +3105,36 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
posSrc[idxY].castTo!int,
|
posSrc[idxY].castTo!int,
|
||||||
];
|
];
|
||||||
} else static if (directionY == up) {
|
} else static if (directionY == up) {
|
||||||
result = [
|
if (posSrc[idxY] < udecimalHalf) {
|
||||||
min(sourceMaxY, posSrc[idxY].floor().castTo!int),
|
result = [
|
||||||
min(sourceMaxY, posSrc[idxY].ceil().castTo!int),
|
0,
|
||||||
];
|
0,
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
const floor = posSrc[idxY].castTo!uint;
|
||||||
|
if (posSrc[idxY].fractionalDigits == udecimalHalfFD) {
|
||||||
|
result = [
|
||||||
|
floor,
|
||||||
|
floor,
|
||||||
|
];
|
||||||
|
} else if (posSrc[idxY].fractionalDigits > udecimalHalfFD) {
|
||||||
|
const upper = min((floor + 1), sourceMax[idxY]);
|
||||||
|
result = [
|
||||||
|
floor,
|
||||||
|
upper,
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
result = [
|
||||||
|
floor - 1,
|
||||||
|
floor,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
} else /* if (directionY == down) */ {
|
} else /* if (directionY == down) */ {
|
||||||
const ratioHalf = (ratios[idxY] >> 1);
|
const ratioHalf = (ratios[idxY] >> 1);
|
||||||
result = [
|
result = [
|
||||||
max((posSrc[idxY] - ratioHalf).roundEven().castTo!int, 0),
|
max((posSrc[idxY] - ratioHalf).roundEven().castTo!int, 0),
|
||||||
min((posSrc[idxY] + ratioHalf).roundEven().castTo!int, sourceMaxY),
|
min((posSrc[idxY] + ratioHalf).roundEven().castTo!int, sourceMax[idxY]),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
@ -3111,139 +3175,63 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
// ====== Proper bilinear (up) + Avg (down) ======
|
// ====== Proper bilinear (up) + Avg (down) ======
|
||||||
static if (filter == ScalingFilter.bilinear) {
|
static if (filter == ScalingFilter.bilinear) {
|
||||||
auto pxInt = Pixel(0, 0, 0, 0);
|
auto pxInt = Pixel(0, 0, 0, 0);
|
||||||
|
|
||||||
|
enum SamplingMode {
|
||||||
|
single,
|
||||||
|
dual,
|
||||||
|
multi,
|
||||||
|
}
|
||||||
|
|
||||||
foreach (immutable ib, ref c; pxInt.components) {
|
foreach (immutable ib, ref c; pxInt.components) {
|
||||||
ulong sampleX() {
|
|
||||||
|
auto sampleX(SamplingMode mode)() {
|
||||||
pragma(inline, true);
|
pragma(inline, true);
|
||||||
|
|
||||||
static if (directionX == none) {
|
static if (mode == SamplingMode.multi) {
|
||||||
return (() @trusted => pxNeighs[idxTL].components.ptr[ib])();
|
const nLines = 1 + posSrcY[idxB] - posSrcY[idxT];
|
||||||
} else static if (directionX == down) {
|
|
||||||
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
|
||||||
const posSampling = Point(posSrcX[idxL], posSrcY[idxT]);
|
|
||||||
const samplingOffset = source.scanTo(posSampling);
|
|
||||||
const srcSamples = () @trusted {
|
|
||||||
return source.data.ptr[samplingOffset .. (samplingOffset + nSamples)];
|
|
||||||
}();
|
|
||||||
|
|
||||||
ulong xSum = 0;
|
alias ForeachLineCallback = ulong delegate(const Point posLine) @safe pure nothrow @nogc;
|
||||||
|
ulong foreachLine(scope ForeachLineCallback apply) {
|
||||||
foreach (srcSample; srcSamples) {
|
ulong linesSum = 0;
|
||||||
xSum += (() @trusted => srcSample.components.ptr[ib])();
|
foreach (lineY; posSrcY[idxT] .. (1 + posSrcY[idxB])) {
|
||||||
}
|
const posLine = Point(posSrcX[idxL], lineY);
|
||||||
|
linesSum += apply(posLine);
|
||||||
return (xSum / nSamples);
|
|
||||||
} else /* if (directionX == up) */ {
|
|
||||||
ulong xSum = 0;
|
|
||||||
|
|
||||||
const ulong[2] weightsX = () {
|
|
||||||
ulong[2] result;
|
|
||||||
result[1] = posSrc[0].fractionalDigits;
|
|
||||||
result[0] = ulong(uint.max) + 1 - result[1];
|
|
||||||
return result;
|
|
||||||
}();
|
|
||||||
|
|
||||||
() @trusted {
|
|
||||||
xSum += (pxNeighs[idxTL].components.ptr[ib] * weightsX[0]);
|
|
||||||
xSum += (pxNeighs[idxTR].components.ptr[ib] * weightsX[1]);
|
|
||||||
}();
|
|
||||||
|
|
||||||
return (xSum >> 32);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ulong[2] sampleXDual() {
|
|
||||||
pragma(inline, true);
|
|
||||||
|
|
||||||
static if (directionX == none) {
|
|
||||||
return () @trusted {
|
|
||||||
ulong[2] result = [
|
|
||||||
pxNeighs[idxTL].components.ptr[ib],
|
|
||||||
pxNeighs[idxBL].components.ptr[ib],
|
|
||||||
];
|
|
||||||
return result;
|
|
||||||
}();
|
|
||||||
} else static if (directionX == down) {
|
|
||||||
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
|
||||||
const Point[2] posSampling = [
|
|
||||||
Point(posSrcX[idxL], posSrcY[idxT]),
|
|
||||||
Point(posSrcX[idxL], posSrcY[idxB]),
|
|
||||||
];
|
|
||||||
|
|
||||||
const int[2] samplingOffsets = [
|
|
||||||
source.scanTo(posSampling[0]),
|
|
||||||
source.scanTo(posSampling[1]),
|
|
||||||
];
|
|
||||||
|
|
||||||
const srcSamples2 = () @trusted {
|
|
||||||
const(const(Pixel)[])[2] result = [
|
|
||||||
source.data.ptr[samplingOffsets[0] .. (samplingOffsets[0] + nSamples)],
|
|
||||||
source.data.ptr[samplingOffsets[1] .. (samplingOffsets[1] + nSamples)],
|
|
||||||
];
|
|
||||||
return result;
|
|
||||||
}();
|
|
||||||
|
|
||||||
ulong[2] xSums = [0, 0];
|
|
||||||
|
|
||||||
foreach (idx, srcSamples; srcSamples2) {
|
|
||||||
foreach (srcSample; srcSamples) {
|
|
||||||
() @trusted { xSums.ptr[idx] += srcSample.components.ptr[ib]; }();
|
|
||||||
}
|
}
|
||||||
|
return linesSum;
|
||||||
}
|
}
|
||||||
|
|
||||||
xSums[] /= nSamples;
|
|
||||||
return xSums;
|
|
||||||
} else /* if (directionX == up) */ {
|
|
||||||
ulong[2] xSums = [0, 0];
|
|
||||||
|
|
||||||
const ulong[2] weightsX = () {
|
|
||||||
ulong[2] result;
|
|
||||||
result[1] = posSrc[0].fractionalDigits;
|
|
||||||
result[0] = ulong(uint.max) + 1 - result[1];
|
|
||||||
return result;
|
|
||||||
}();
|
|
||||||
|
|
||||||
() @trusted {
|
|
||||||
xSums[0] += (pxNeighs[idxTL].components.ptr[ib] * weightsX[0]);
|
|
||||||
xSums[0] += (pxNeighs[idxTR].components.ptr[ib] * weightsX[1]);
|
|
||||||
|
|
||||||
xSums[1] += (pxNeighs[idxBL].components.ptr[ib] * weightsX[0]);
|
|
||||||
xSums[1] += (pxNeighs[idxBR].components.ptr[ib] * weightsX[1]);
|
|
||||||
}();
|
|
||||||
|
|
||||||
foreach (ref sum; xSums) {
|
|
||||||
sum >>= 32;
|
|
||||||
}
|
|
||||||
|
|
||||||
return xSums;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ulong sampleXMulti() {
|
|
||||||
pragma(inline, true);
|
|
||||||
|
|
||||||
const nLines = 1 + posSrcY[idxB] - posSrcY[idxT];
|
|
||||||
ulong ySum = 0;
|
|
||||||
|
|
||||||
alias ForeachLineCallback = ulong delegate(const Point posLine) @safe pure nothrow @nogc;
|
|
||||||
ulong foreachLine(scope ForeachLineCallback apply) {
|
|
||||||
ulong linesSum = 0;
|
|
||||||
foreach (lineY; posSrcY[idxT] .. (1 + posSrcY[idxB])) {
|
|
||||||
const posLine = Point(posSrcX[idxL], lineY);
|
|
||||||
linesSum += apply(posLine);
|
|
||||||
}
|
|
||||||
return linesSum;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ======== None ========
|
||||||
static if (directionX == none) {
|
static if (directionX == none) {
|
||||||
ySum = foreachLine(delegate(const Point posLine) {
|
static if (mode == SamplingMode.single) {
|
||||||
const pxSrc = source.getPixel(posLine);
|
return (() @trusted => pxNeighs[idxTL].components.ptr[ib])();
|
||||||
return ulong((() @trusted => pxSrc.components.ptr[ib])());
|
}
|
||||||
});
|
|
||||||
} else static if (directionX == down) {
|
|
||||||
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
|
||||||
|
|
||||||
ySum = foreachLine(delegate(const Point posLine) {
|
static if (mode == SamplingMode.dual) {
|
||||||
const samplingOffset = source.scanTo(posLine);
|
return () @trusted {
|
||||||
|
ulong[2] result = [
|
||||||
|
pxNeighs[idxTL].components.ptr[ib],
|
||||||
|
pxNeighs[idxBL].components.ptr[ib],
|
||||||
|
];
|
||||||
|
return result;
|
||||||
|
}();
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (mode == SamplingMode.multi) {
|
||||||
|
const ySum = foreachLine(delegate(const Point posLine) {
|
||||||
|
const pxSrc = source.getPixel(posLine);
|
||||||
|
return ulong((() @trusted => pxSrc.components.ptr[ib])());
|
||||||
|
});
|
||||||
|
return (ySum / nLines);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ======== Down ========
|
||||||
|
static if (directionX == down) {
|
||||||
|
static if (mode == SamplingMode.single) {
|
||||||
|
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
||||||
|
const posSampling = Point(posSrcX[idxL], posSrcY[idxT]);
|
||||||
|
const samplingOffset = source.scanTo(posSampling);
|
||||||
const srcSamples = () @trusted {
|
const srcSamples = () @trusted {
|
||||||
return source.data.ptr[samplingOffset .. (samplingOffset + nSamples)];
|
return source.data.ptr[samplingOffset .. (samplingOffset + nSamples)];
|
||||||
}();
|
}();
|
||||||
|
@ -3254,56 +3242,166 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
xSum += (() @trusted => srcSample.components.ptr[ib])();
|
xSum += (() @trusted => srcSample.components.ptr[ib])();
|
||||||
}
|
}
|
||||||
|
|
||||||
return xSum;
|
return (xSum / nSamples);
|
||||||
});
|
}
|
||||||
|
|
||||||
ySum /= nSamples;
|
static if (mode == SamplingMode.dual) {
|
||||||
} else /* if (directionX == up) */ {
|
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
||||||
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
const Point[2] posSampling = [
|
||||||
|
Point(posSrcX[idxL], posSrcY[idxT]),
|
||||||
|
Point(posSrcX[idxL], posSrcY[idxB]),
|
||||||
|
];
|
||||||
|
|
||||||
ySum = foreachLine(delegate(const Point posLine) {
|
const int[2] samplingOffsets = [
|
||||||
ulong xSum = 0;
|
source.scanTo(posSampling[0]),
|
||||||
|
source.scanTo(posSampling[1]),
|
||||||
|
];
|
||||||
|
|
||||||
const ulong[2] weightsX = () {
|
const srcSamples2 = () @trusted {
|
||||||
ulong[2] result;
|
const(const(Pixel)[])[2] result = [
|
||||||
result[1] = posSrc[0].fractionalDigits;
|
source.data.ptr[samplingOffsets[0] .. (samplingOffsets[0] + nSamples)],
|
||||||
result[0] = ulong(uint.max) + 1 - result[1];
|
source.data.ptr[samplingOffsets[1] .. (samplingOffsets[1] + nSamples)],
|
||||||
return result;
|
|
||||||
}();
|
|
||||||
|
|
||||||
const samplingOffset = source.scanTo(posLine);
|
|
||||||
ubyte[2] pxcLR = () @trusted {
|
|
||||||
ubyte[2] result = [
|
|
||||||
source.data.ptr[samplingOffset].components.ptr[ib],
|
|
||||||
source.data.ptr[samplingOffset + nSamples].components.ptr[ib],
|
|
||||||
];
|
];
|
||||||
return result;
|
return result;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
xSum += (pxcLR[idxL] * weightsX[idxL]);
|
ulong[2] xSums = [0, 0];
|
||||||
xSum += (pxcLR[idxR] * weightsX[idxR]);
|
|
||||||
|
|
||||||
return (xSum >> 32);
|
foreach (idx, srcSamples; srcSamples2) {
|
||||||
});
|
foreach (srcSample; srcSamples) {
|
||||||
|
() @trusted { xSums.ptr[idx] += srcSample.components.ptr[ib]; }();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
xSums[] /= nSamples;
|
||||||
|
return xSums;
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (mode == SamplingMode.multi) {
|
||||||
|
const nSamples = 1 + posSrcX[idxR] - posSrcX[idxL];
|
||||||
|
|
||||||
|
auto ySum = foreachLine(delegate(const Point posLine) {
|
||||||
|
const samplingOffset = source.scanTo(posLine);
|
||||||
|
const srcSamples = () @trusted {
|
||||||
|
return source.data.ptr[samplingOffset .. (samplingOffset + nSamples)];
|
||||||
|
}();
|
||||||
|
|
||||||
|
ulong xSum = 0;
|
||||||
|
|
||||||
|
foreach (srcSample; srcSamples) {
|
||||||
|
xSum += (() @trusted => srcSample.components.ptr[ib])();
|
||||||
|
}
|
||||||
|
|
||||||
|
return xSum;
|
||||||
|
});
|
||||||
|
|
||||||
|
ySum /= nSamples;
|
||||||
|
return (ySum / nLines);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (ySum / nLines);
|
// ======== Up ========
|
||||||
|
static if (directionX == up) {
|
||||||
|
|
||||||
|
if (posSrcX[0] == posSrcX[1]) {
|
||||||
|
static if (mode == SamplingMode.single) {
|
||||||
|
return (() @trusted => pxNeighs[idxTL].components.ptr[ib])();
|
||||||
|
}
|
||||||
|
static if (mode == SamplingMode.dual) {
|
||||||
|
return () @trusted {
|
||||||
|
ulong[2] result = [
|
||||||
|
pxNeighs[idxTL].components.ptr[ib],
|
||||||
|
pxNeighs[idxBL].components.ptr[ib],
|
||||||
|
];
|
||||||
|
return result;
|
||||||
|
}();
|
||||||
|
}
|
||||||
|
static if (mode == SamplingMode.multi) {
|
||||||
|
const ySum = foreachLine(delegate(const Point posLine) {
|
||||||
|
ulong xSum = 0;
|
||||||
|
const samplingOffset = source.scanTo(posLine);
|
||||||
|
return (() @trusted
|
||||||
|
=> source.data.ptr[samplingOffset].components.ptr[ib]
|
||||||
|
)();
|
||||||
|
});
|
||||||
|
return (ySum / nLines);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const ulong[2] weightsX = () {
|
||||||
|
ulong[2] result;
|
||||||
|
result[0] = (udecimalHalf + posSrcX[1] - posSrc[idxX]).fractionalDigits;
|
||||||
|
result[1] = ulong(uint.max) + 1 - result[0];
|
||||||
|
return result;
|
||||||
|
}();
|
||||||
|
|
||||||
|
static if (mode == SamplingMode.single) {
|
||||||
|
ulong xSum = 0;
|
||||||
|
|
||||||
|
() @trusted {
|
||||||
|
xSum += (pxNeighs[idxTL].components.ptr[ib] * weightsX[0]);
|
||||||
|
xSum += (pxNeighs[idxTR].components.ptr[ib] * weightsX[1]);
|
||||||
|
}();
|
||||||
|
|
||||||
|
xSum >>= 32;
|
||||||
|
return xSum;
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (mode == SamplingMode.dual) {
|
||||||
|
ulong[2] xSums = [0, 0];
|
||||||
|
|
||||||
|
() @trusted {
|
||||||
|
xSums[0] += (pxNeighs[idxTL].components.ptr[ib] * weightsX[0]);
|
||||||
|
xSums[0] += (pxNeighs[idxTR].components.ptr[ib] * weightsX[1]);
|
||||||
|
|
||||||
|
xSums[1] += (pxNeighs[idxBL].components.ptr[ib] * weightsX[0]);
|
||||||
|
xSums[1] += (pxNeighs[idxBR].components.ptr[ib] * weightsX[1]);
|
||||||
|
}();
|
||||||
|
|
||||||
|
foreach (ref sum; xSums) {
|
||||||
|
sum >>= 32;
|
||||||
|
}
|
||||||
|
|
||||||
|
return xSums;
|
||||||
|
}
|
||||||
|
|
||||||
|
static if (mode == SamplingMode.multi) {
|
||||||
|
const ySum = foreachLine(delegate(const Point posLine) {
|
||||||
|
ulong xSum = 0;
|
||||||
|
|
||||||
|
const samplingOffset = source.scanTo(posLine);
|
||||||
|
ubyte[2] pxcLR = () @trusted {
|
||||||
|
ubyte[2] result = [
|
||||||
|
source.data.ptr[samplingOffset].components.ptr[ib],
|
||||||
|
source.data.ptr[samplingOffset + 1].components.ptr[ib],
|
||||||
|
];
|
||||||
|
return result;
|
||||||
|
}();
|
||||||
|
|
||||||
|
xSum += (pxcLR[idxL] * weightsX[idxL]);
|
||||||
|
xSum += (pxcLR[idxR] * weightsX[idxR]);
|
||||||
|
|
||||||
|
return (xSum >> 32);
|
||||||
|
});
|
||||||
|
|
||||||
|
return (ySum / nLines);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static if (directionY == none) {
|
static if (directionY == none) {
|
||||||
c = clamp255(sampleX());
|
c = clamp255(sampleX!(SamplingMode.single)());
|
||||||
} else static if (directionY == down) {
|
} else static if (directionY == down) {
|
||||||
c = clamp255(sampleXMulti());
|
c = clamp255(sampleX!(SamplingMode.multi)());
|
||||||
} else /* if (directionY == up) */ {
|
} else /* if (directionY == up) */ {
|
||||||
// looks ass
|
|
||||||
const ulong[2] weightsY = () {
|
const ulong[2] weightsY = () {
|
||||||
ulong[2] result;
|
ulong[2] result;
|
||||||
result[idxB] = posSrc[1].fractionalDigits;
|
result[0] = (udecimalHalf + posSrcY[1] - posSrc[idxY]).fractionalDigits;
|
||||||
result[idxT] = ulong(uint.max) + 1 - result[idxB];
|
result[1] = ulong(uint.max) + 1 - result[0];
|
||||||
return result;
|
return result;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
const xSums = sampleXDual();
|
const xSums = sampleX!(SamplingMode.dual)();
|
||||||
|
|
||||||
ulong ySum = 0;
|
ulong ySum = 0;
|
||||||
ySum += (xSums[idxT] * weightsY[idxT]);
|
ySum += (xSums[idxT] * weightsY[idxT]);
|
||||||
|
|
Loading…
Reference in New Issue