- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在学习 three.js,尝试尝试转换图像。
我非常喜欢显示的效果here.
我要遵循哪些步骤才能转换与此类似的图像?
到目前为止我有:
// instantiate a loader
var loader = new THREE.TextureLoader();
// load a resource
loader.load(
// resource URL
'clouds.jpg',
// Function when resource is loaded
function (texture) {
init(new THREE.MeshBasicMaterial({
map: texture
}));
},
// Function called when download progresses
function (xhr) {
console.log((xhr.loaded / xhr.total * 100) + '% loaded');
},
// Function called when download errors
function (xhr) {
console.log('An error happened');
}
);
var init = function(material) {
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
var renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
var rectLength = window.innerHeight;
var rectWidth = window.innerWidth;
var rectShape = new THREE.Shape();
rectShape.moveTo(0,0);
rectShape.lineTo(0, rectWidth);
rectShape.lineTo(rectLength, rectWidth);
rectShape.lineTo(rectLength, 0);
rectShape.lineTo(0, 0);
var geometry = new THREE.ShapeGeometry(rectShape);
var cube = new THREE.Mesh(geometry, material);
scene.add(cube);
camera.position.z = 1;
var render = function () {
requestAnimationFrame(render);
renderer.render(scene, camera);
};
render();
}
这将我的图像呈现为平面 2D 形状,但我仍然不知道如何将效果应用于图像。猜测这需要在 render
内部发生,但不确定如何发生。
还是我最好在纯 WebGL 中执行此操作?
非常感谢任何提示/建议/教程!
最佳答案
在 WebGL 中是否有理由这样做?当然,您可以在 WebGL 中执行类似的操作,但您也可以在 2D Canvas 中执行此操作
var img = new Image();
img.onload = start;
img.src = "https://i.imgur.com/v38pV.jpg";
function start() {
var canvas = document.querySelector("canvas");
var ctx = canvas.getContext("2d");
function mix(a, b, l) {
return a + (b - a) * l;
}
function upDown(v) {
return Math.sin(v) * 0.5 + 0.5;
}
function render(time) {
time *= 0.001;
resize(canvas);
var t1 = time;
var t2 = time * 0.37;
// for each line in the canvas
for (var dstY = 0; dstY < canvas.height; ++dstY) {
// v is value that goes 0 to 1 down the canvas
var v = dstY / canvas.height;
// compute some amount to offset the src
var off1 = Math.sin((v + 0.5) * mix(3, 12, upDown(t1))) * 300;
var off2 = Math.sin((v + 0.5) * mix(3, 12, upDown(t2))) * 300;
var off = off1 + off2;
// compute what line of the source image we want
// NOTE: if off = 0 then it would just be stretching
// the image down the canvas.
var srcY = dstY * img.height / canvas.height + off;
// clamp srcY to be inside the image
srcY = Math.max(0, Math.min(img.height - 1, srcY));
// draw a single line from the src to the canvas
ctx.drawImage(
img,
0, srcY, img.width, 1,
0, dstY, canvas.width, 1);
}
requestAnimationFrame(render);
}
requestAnimationFrame(render);
function resize(canvas) {
var width = canvas.clientWidth;
var height = canvas.clientHeight;
if (width != canvas.width || height != canvas.height) {
canvas.width = width;
canvas.height = height;
}
}
}
body { margin: 0; }
canvas { width: 100vw; height: 100vh; display: block; }
<canvas></canvas>
我不知道他们的确切公式是什么,但显然该技术的灵感来自一种叫做 slit scan 的东西。 .
在 WebGL 中执行此操作可能会允许更疯狂的变形,因为您可以轻松地对每个像素进行变形,而不是仅对每行进行变形( Canvas API 中的每个像素会太慢)。 Three.js 会很好,但没有理由为这么小的效果使用这么大的库
这是一个 twgl 版本
var vs = `
attribute vec4 position;
varying vec2 v_texcoord;
void main() {
gl_Position = position;
v_texcoord = position.xy * .5 + .5;
}
`;
var fs1 = `
precision mediump float;
uniform float time;
uniform sampler2D tex;
varying vec2 v_texcoord;
float upDown(float v) {
return sin(v) * .5 + .5;
}
void main() {
float t1 = time;
float t2 = time * 0.37;
float v = v_texcoord.y;
float off1 = sin((v + 0.5) * mix(1., 6., upDown(t1))) * .2;
float off2 = sin((v + 0.5) * mix(1., 3., upDown(t2))) * .2;
float off = off1 + off2;
// like the canvas2d example if off = 0 then the image will just
// be flattly stretched down the canvas. "off" is an offset in
// texture coordinates of which part of the source image to use
// for the current destination.
// In the canvas example off was in pixels since in +1 means use the
// src image 1 pixel lower than we would have used and -1 = one pixel higher
// In shaders we work in texture coords which go from 0 to 1 regardless
// of the size of the texture. So for example if the texture was 100 pixels
// tall then off = 0.01 would offset by 1 pixel. We didn't pass in
// the size of the canvas nor the size of the texture but of course we
// we could if we thought that was important.
vec2 uv = vec2(
v_texcoord.x,
1. - (v + off));
gl_FragColor = texture2D(tex, uv);
}
`;
var fs2 = `
precision mediump float;
uniform float time;
uniform sampler2D tex;
varying vec2 v_texcoord;
float upDown(float v) {
return sin(v) * .5 + .5;
}
#define PI radians(180.)
mat2 rot(float a) {
float c = cos(a);
float s = sin(a);
return mat2(c, s, -s, c);
}
float bounce(float v) {
v = fract(v * .2);
return mix(v, 2. - v, step(1., v));
}
void main() {
float t1 = time;
float t2 = time * 0.37;
float t3 = time * 0.1;
float t4 = time * 1.23;
vec2 tc = rot(time * 0.1) * (v_texcoord - 0.25) ;
vec2 xy = fract(tc * mix(.5, 3., upDown(t4))) * 2. - 1.;
float a = fract(abs(atan(xy.x, xy.y)) / PI + t3);
float r = bounce(length(xy) + t1);
r = pow(r, mix(0.2, 1., upDown(t2)));
vec2 uv = vec2(a, r);
gl_FragColor = texture2D(tex, uv);
}
`;
var gl = document.querySelector("canvas").getContext("webgl");
var programInfo1 = twgl.createProgramInfo(gl, [vs, fs1]);
var programInfo2 = twgl.createProgramInfo(gl, [vs, fs2]);
var bufferInfo = twgl.createBufferInfoFromArrays(gl, {
position: {
numComponents: 2,
data: [
-1, -1,
1, -1,
-1, 1,
-1, 1,
1, -1,
1, 1,
],
},
});
var texture = twgl.createTexture(gl, {
src: "https://i.imgur.com/v38pV.jpg",
crossOrigin: '',
});
var uniforms = {
tex: texture,
time: 0,
};
var programIndex = 0;
var programInfos = [
programInfo1,
programInfo2,
];
function nextProgram() {
programIndex = (programIndex + 1) % programInfos.length;
}
window.addEventListener('keydown', nextProgram);
window.addEventListener('mousedown', nextProgram);
window.addEventListener('touchstart', nextProgram);
function render(time) {
uniforms.time = time * 0.001;
twgl.resizeCanvasToDisplaySize(gl.canvas);
gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);
var programInfo = programInfos[programIndex];
gl.useProgram(programInfo.program);
twgl.setBuffersAndAttributes(gl, programInfo, bufferInfo);
twgl.setUniforms(programInfo, uniforms);
twgl.drawBufferInfo(gl, gl.TRIANGLES, bufferInfo);
requestAnimationFrame(render);
}
requestAnimationFrame(render);
body { margin: 0; }
canvas { width: 100vw; height: 100vh; display: block; }
.top { position: absolute; left: 5px; top: 5px; color: white; }
<script src="https://twgljs.org/dist/twgl.min.js"></script>
<canvas></canvas>
<div class="top">click to switch effects</div>
关于javascript - 在 WebGL 和 three.js 中创建图像变形效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39008771/
我正在学习构建单页应用程序 (SPA) 所需的所有技术。总而言之,我想将我的应用程序实现为单独的层,其中前端仅使用 API Web 服务(json 通过 socket.io)与后端通信。前端基本上是
当我看到存储在我的数据库中的日期时。 这是 正常 。日期和时间就是这样。 但是当我运行 get 请求来获取数据时。 此格式与存储在数据库 中的格式不同。为什么会发生这种情况? 最佳答案 我认为您可以将
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在尝试使用backbone.js 实现一些代码 和 hogan.js (http://twitter.github.com/hogan.js/) Hogan.js was developed ag
我正在使用 Backbone.js、Node.js 和 Express.js 制作一个 Web 应用程序,并且想要添加用户功能(登录、注销、配置文件、显示内容与该用户相关)。我打算使用 Passpor
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
我尝试在 NodeJS 中加载数据,然后将其传递给 ExpressJS 以在浏览器中呈现 d3 图表。 我知道我可以通过这种方式加载数据 - https://github.com/mbostock/q
在 node.js 中,我似乎遇到了相同的 3 个文件名来描述应用程序的主要入口点: 使用 express-generator 包时,会创建一个 app.js 文件作为生成应用的主要入口点。 通过 n
最近,我有机会观看了 john papa 关于构建单页应用程序的精彩类(class)。我会喜欢的。它涉及服务器端和客户端应用程序的方方面面。 我更喜欢客户端。在他的实现过程中,papa先生在客户端有类
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我是一个图形新手,需要帮助了解各种 javascript 2D 库的功能。 . . 我从 Pixi.js 中得到了什么,而我没有从 Konva 等基于 Canvas 的库中得到什么? 我从 Konva
我正在尝试将一些 LESS 代码(通过 ember-cli-less)构建到 CSS 文件中。 1) https://almsaeedstudio.com/ AdminLTE LESS 文件2) Bo
尝试查看 Express Passport 中所有登录用户的所有 session ,并希望能够查看当前登录的用户。最好和最快的方法是什么? 我在想也许我可以在登录时执行此操作并将用户模型数据库“在线”
我有一个 React 应用程序,但我需要在组件加载完成后运行一些客户端 js。一旦渲染函数完成并加载,运行与 DOM 交互的 js 的最佳方式是什么,例如 $('div').mixItUp() 。对
请告诉我如何使用bodyparser.raw()将文件上传到express.js服务器 客户端 // ... onFilePicked(file) { const url = 'upload/a
我正在尝试从 Grunt 迁移到 Gulp。这个项目在 Grunt 下运行得很好,所以我一定是在 Gulp 中做错了什么。 除脚本外,所有其他任务均有效。我现在厌倦了添加和注释部分。 我不断收到与意外
我正在尝试更改我的网站名称。找不到可以设置标题或应用程序名称的位置。 最佳答案 您可以在 config/ 目录中创建任何文件,例如 config/app.js 包含如下内容: module.expor
经过多年的服务器端 PHP/MySQL 开发,我正在尝试探索用于构建现代 Web 应用程序的新技术。 我正在尝试对所有 JavaScript 内容进行排序,如果我理解得很好,一个有效的解决方案可以是服
我是 Nodejs 的新手。我在 route 目录中有一个 app.js 和一个 index.js。我有一个 app.use(multer....)。我还定义了 app.post('filter-re
我正在使用 angular-seed用于构建我的应用程序的模板。最初,我将所有 JavaScript 代码放入一个文件 main.js。该文件包含我的模块声明、 Controller 、指令、过滤器和
我是一名优秀的程序员,十分优秀!