Skip to content

Instantly share code, notes, and snippets.

@mathcodes
Created June 12, 2021 08:27
Show Gist options
  • Save mathcodes/eaa4f49f0b8ad6f301ead1f66042807d to your computer and use it in GitHub Desktop.
Save mathcodes/eaa4f49f0b8ad6f301ead1f66042807d to your computer and use it in GitHub Desktop.
Three.js - postprocessing - 3DLUT
<canvas id="c"></canvas>
// Three.js - postprocessing - 3DLUT
// from https://threejsfundamentals.org/threejs/threejs-postprocessing-3dlut.html
import * as THREE from 'https://threejsfundamentals.org/threejs/resources/threejs/r127/build/three.module.js';
import {OrbitControls} from 'https://threejsfundamentals.org/threejs/resources/threejs/r127/examples/jsm/controls/OrbitControls.js';
import {GLTFLoader} from 'https://threejsfundamentals.org/threejs/resources/threejs/r127/examples/jsm/loaders/GLTFLoader.js';
import {EffectComposer} from 'https://threejsfundamentals.org/threejs/resources/threejs/r127/examples/jsm/postprocessing/EffectComposer.js';
import {RenderPass} from 'https://threejsfundamentals.org/threejs/resources/threejs/r127/examples/jsm/postprocessing/RenderPass.js';
import {ShaderPass} from 'https://threejsfundamentals.org/threejs/resources/threejs/r127/examples/jsm/postprocessing/ShaderPass.js';
import {GUI} from 'https://threejsfundamentals.org/threejs/../3rdparty/dat.gui.module.js';
function main() {
const canvas = document.querySelector('#c');
const renderer = new THREE.WebGLRenderer({canvas});
const fov = 45;
const aspect = 2; // the canvas default
const near = 0.1;
const far = 100;
const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
camera.position.set(0, 10, 20);
const controls = new OrbitControls(camera, canvas);
controls.target.set(0, 5, 0);
controls.update();
const lutTextures = [
{ name: 'identity', size: 2, filter: true , },
{ name: 'identity no filter', size: 2, filter: false, },
{ name: 'custom', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/3dlut-red-only-s16.png' },
{ name: 'monochrome', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/monochrome-s8.png' },
{ name: 'sepia', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/sepia-s8.png' },
{ name: 'saturated', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/saturated-s8.png', },
{ name: 'posterize', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/posterize-s8n.png', },
{ name: 'posterize-3-rgb', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/posterize-3-rgb-s8n.png', },
{ name: 'posterize-3-lab', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/posterize-3-lab-s8n.png', },
{ name: 'posterize-4-lab', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/posterize-4-lab-s8n.png', },
{ name: 'posterize-more', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/posterize-more-s8n.png', },
{ name: 'inverse', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/inverse-s8.png', },
{ name: 'color negative', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/color-negative-s8.png', },
{ name: 'high contrast', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/high-contrast-bw-s8.png', },
{ name: 'funky contrast', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/funky-contrast-s8.png', },
{ name: 'nightvision', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/nightvision-s8.png', },
{ name: 'thermal', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/thermal-s8.png', },
{ name: 'b/w', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/black-white-s8n.png', },
{ name: 'hue +60', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/hue-plus-60-s8.png', },
{ name: 'hue +180', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/hue-plus-180-s8.png', },
{ name: 'hue -60', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/hue-minus-60-s8.png', },
{ name: 'red to cyan', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/red-to-cyan-s8.png' },
{ name: 'blues', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/blues-s8.png' },
{ name: 'infrared', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/infrared-s8.png' },
{ name: 'radioactive', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/radioactive-s8.png' },
{ name: 'goolgey', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/googley-s8.png' },
{ name: 'bgy', url: 'https://threejsfundamentals.org/threejs/resources/images/lut/bgy-s8.png' },
];
const makeIdentityLutTexture = function() {
const identityLUT = new Uint8Array([
0, 0, 0, 255, // black
255, 0, 0, 255, // red
0, 0, 255, 255, // blue
255, 0, 255, 255, // magenta
0, 255, 0, 255, // green
255, 255, 0, 255, // yellow
0, 255, 255, 255, // cyan
255, 255, 255, 255, // white
]);
return function(filter) {
const texture = new THREE.DataTexture(identityLUT, 4, 2, THREE.RGBAFormat);
texture.minFilter = filter;
texture.magFilter = filter;
texture.needsUpdate = true;
texture.flipY = false;
return texture;
};
}();
const makeLUTTexture = function() {
const imgLoader = new THREE.ImageLoader();
const ctx = document.createElement('canvas').getContext('2d');
return function(info) {
const texture = makeIdentityLutTexture(
info.filter ? THREE.LinearFilter : THREE.NearestFilter);
if (info.url) {
const lutSize = info.size;
// set the size to 2 (the identity size). We'll restore it when the
// image has loaded. This way the code using the lut doesn't have to
// care if the image has loaded or not
info.size = 2;
imgLoader.load(info.url, function(image) {
const width = lutSize * lutSize;
const height = lutSize;
info.size = lutSize;
ctx.canvas.width = width;
ctx.canvas.height = height;
ctx.drawImage(image, 0, 0);
const imageData = ctx.getImageData(0, 0, width, height);
texture.image.data = new Uint8Array(imageData.data.buffer);
texture.image.width = width;
texture.image.height = height;
texture.needsUpdate = true;
});
}
return texture;
};
}();
lutTextures.forEach((info) => {
// if not size set get it from the filename
if (!info.size) {
// assumes filename ends in '-s<num>[n]'
// where <num> is the size of the 3DLUT cube
// and [n] means 'no filtering' or 'nearest'
//
// examples:
// 'foo-s16.png' = size:16, filter: true
// 'bar-s8n.png' = size:8, filter: false
const m = /-s(\d+)(n*)\.[^.]+$/.exec(info.url);
if (m) {
info.size = parseInt(m[1]);
info.filter = info.filter === undefined ? m[2] !== 'n' : info.filter;
}
}
info.texture = makeLUTTexture(info);
});
const lutNameIndexMap = {};
lutTextures.forEach((info, ndx) => {
lutNameIndexMap[info.name] = ndx;
});
const lutSettings = {
lut: lutNameIndexMap.custom,
};
const gui = new GUI({ width: 300 });
gui.add(lutSettings, 'lut', lutNameIndexMap);
const scene = new THREE.Scene();
const sceneBG = new THREE.Scene();
const cameraBG = new THREE.OrthographicCamera(-1, 1, 1, -1, -1, 1);
let bgMesh;
let bgTexture;
{
const loader = new THREE.TextureLoader();
bgTexture = loader.load('https://threejsfundamentals.org/threejs/resources/images/beach.jpg');
const planeGeo = new THREE.PlaneGeometry(2, 2);
const planeMat = new THREE.MeshBasicMaterial({
map: bgTexture,
depthTest: false,
});
bgMesh = new THREE.Mesh(planeGeo, planeMat);
sceneBG.add(bgMesh);
}
function frameArea(sizeToFitOnScreen, boxSize, boxCenter, camera) {
const halfSizeToFitOnScreen = sizeToFitOnScreen * 0.5;
const halfFovY = THREE.MathUtils.degToRad(camera.fov * .5);
const distance = halfSizeToFitOnScreen / Math.tan(halfFovY);
// compute a unit vector that points in the direction the camera is now
// in the xz plane from the center of the box
const direction = (new THREE.Vector3())
.subVectors(camera.position, boxCenter)
.multiply(new THREE.Vector3(1, 0, 1))
.normalize();
// move the camera to a position distance units way from the center
// in whatever direction the camera was from the center already
camera.position.copy(direction.multiplyScalar(distance).add(boxCenter));
// pick some near and far values for the frustum that
// will contain the box.
camera.near = boxSize / 100;
camera.far = boxSize * 100;
camera.updateProjectionMatrix();
// point the camera to look at the center of the box
camera.lookAt(boxCenter.x, boxCenter.y, boxCenter.z);
}
{
const gltfLoader = new GLTFLoader();
gltfLoader.load('https://threejsfundamentals.org/threejs/resources/models/3dbustchallange_submission/scene.gltf', (gltf) => {
const root = gltf.scene;
scene.add(root);
// fix materials from r114
root.traverse(({material}) => {
if (material) {
material.depthWrite = true;
}
});
root.updateMatrixWorld();
// compute the box that contains all the stuff
// from root and below
const box = new THREE.Box3().setFromObject(root);
const boxSize = box.getSize(new THREE.Vector3()).length();
const boxCenter = box.getCenter(new THREE.Vector3());
frameArea(boxSize * 0.4, boxSize, boxCenter, camera);
// update the Trackball controls to handle the new size
controls.maxDistance = boxSize * 10;
controls.target.copy(boxCenter);
controls.update();
});
}
const lutShader = {
uniforms: {
tDiffuse: { value: null },
lutMap: { value: null },
lutMapSize: { value: 1, },
},
vertexShader: `
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}
`,
fragmentShader: `
#include <common>
#define FILTER_LUT true
uniform sampler2D tDiffuse;
uniform sampler2D lutMap;
uniform float lutMapSize;
varying vec2 vUv;
vec4 sampleAs3DTexture(sampler2D tex, vec3 texCoord, float size) {
float sliceSize = 1.0 / size; // space of 1 slice
float slicePixelSize = sliceSize / size; // space of 1 pixel
float width = size - 1.0;
float sliceInnerSize = slicePixelSize * width; // space of size pixels
float zSlice0 = floor( texCoord.z * width);
float zSlice1 = min( zSlice0 + 1.0, width);
float xOffset = slicePixelSize * 0.5 + texCoord.x * sliceInnerSize;
float yRange = (texCoord.y * width + 0.5) / size;
float s0 = xOffset + (zSlice0 * sliceSize);
#ifdef FILTER_LUT
float s1 = xOffset + (zSlice1 * sliceSize);
vec4 slice0Color = texture2D(tex, vec2(s0, yRange));
vec4 slice1Color = texture2D(tex, vec2(s1, yRange));
float zOffset = mod(texCoord.z * width, 1.0);
return mix(slice0Color, slice1Color, zOffset);
#else
return texture2D(tex, vec2( s0, yRange));
#endif
}
void main() {
vec4 originalColor = texture2D(tDiffuse, vUv);
gl_FragColor = sampleAs3DTexture(lutMap, originalColor.xyz, lutMapSize);
}
`,
};
const lutNearestShader = {
uniforms: {...lutShader.uniforms},
vertexShader: lutShader.vertexShader,
fragmentShader: lutShader.fragmentShader.replace('#define FILTER_LUT', '//'),
};
const effectLUT = new ShaderPass(lutShader);
effectLUT.renderToScreen = true;
const effectLUTNearest = new ShaderPass(lutNearestShader);
effectLUTNearest.renderToScreen = true;
const renderModel = new RenderPass(scene, camera);
renderModel.clear = false; // so we don't clear out the background
const renderBG = new RenderPass(sceneBG, cameraBG);
const rtParameters = {
minFilter: THREE.LinearFilter,
magFilter: THREE.LinearFilter,
format: THREE.RGBFormat,
};
const composer = new EffectComposer(renderer, new THREE.WebGLRenderTarget(1, 1, rtParameters));
composer.addPass(renderBG);
composer.addPass(renderModel);
composer.addPass(effectLUT);
composer.addPass(effectLUTNearest);
function resizeRendererToDisplaySize(renderer) {
const canvas = renderer.domElement;
const width = canvas.clientWidth * window.devicePixelRatio | 0;
const height = canvas.clientHeight * window.devicePixelRatio | 0;
const needResize = canvas.width !== width || canvas.height !== height;
if (needResize) {
renderer.setSize(width, height, false);
}
return needResize;
}
let then = 0;
function render(now) {
now *= 0.001; // convert to seconds
const delta = now - then;
then = now;
if (resizeRendererToDisplaySize(renderer)) {
const canvas = renderer.domElement;
const canvasAspect = canvas.clientWidth / canvas.clientHeight;
camera.aspect = canvasAspect;
camera.updateProjectionMatrix();
composer.setSize(canvas.width, canvas.height);
// scale the background plane to keep the image's
// aspect correct.
// Note the image may not have loaded yet.
const imageAspect = bgTexture.image ? bgTexture.image.width / bgTexture.image.height : 1;
const aspect = imageAspect / canvasAspect;
bgMesh.scale.x = aspect > 1 ? aspect : 1;
bgMesh.scale.y = aspect > 1 ? 1 : 1 / aspect;
}
const lutInfo = lutTextures[ lutSettings.lut ];
const effect = lutInfo.filter ? effectLUT : effectLUTNearest;
effectLUT.enabled = lutInfo.filter;
effectLUTNearest.enabled = !lutInfo.filter;
const lutTexture = lutInfo.texture;
effect.uniforms.lutMap.value = lutTexture;
effect.uniforms.lutMapSize.value = lutInfo.size;
composer.render(delta);
requestAnimationFrame(render);
}
requestAnimationFrame(render);
}
main();
html, body {
margin: 0;
height: 100%;
}
#c {
width: 100%;
height: 100%;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment