2023-07-02 19:34:34 -04:00
|
|
|
import { histIndex, imageIndex } from "./0-utility";
|
2023-07-20 19:55:26 -04:00
|
|
|
import { transformAllPost } from "./2b-post";
|
|
|
|
import { transformFinal } from "./2c-final";
|
|
|
|
import { RendererHistogram } from "./3a-binary";
|
2023-07-02 19:34:34 -04:00
|
|
|
|
2023-07-20 19:55:26 -04:00
|
|
|
class RendererLinear extends RendererHistogram {
|
2023-07-02 19:34:34 -04:00
|
|
|
render(image: ImageData): void {
|
2023-07-20 19:55:26 -04:00
|
|
|
const maxHistogram = Math.max(...this.histogram);
|
2023-07-02 19:34:34 -04:00
|
|
|
|
2023-07-20 19:55:26 -04:00
|
|
|
for (var x = 0; x < this.size; x++) {
|
|
|
|
for (var y = 0; y < this.size; y++) {
|
|
|
|
const hIndex = histIndex(x, y, this.size);
|
|
|
|
const iIndex = imageIndex(x, y, this.size);
|
|
|
|
image.data[iIndex + 0] = 0;
|
|
|
|
image.data[iIndex + 1] = 0;
|
|
|
|
image.data[iIndex + 2] = 0;
|
|
|
|
image.data[iIndex + 3] = (this.histogram[hIndex] / maxHistogram) * 0xff;
|
2023-07-02 19:34:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-20 19:55:26 -04:00
|
|
|
export function buildLinear(size: number) {
|
|
|
|
return new RendererLinear(size, transformAllPost, transformFinal);
|
2023-07-02 19:34:34 -04:00
|
|
|
}
|