You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
3.2 KiB
128 lines
3.2 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>three.js webgl - materials - video - webcam</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
<link type="text/css" rel="stylesheet" href="main.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="info">
|
|
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> webgl - video webcam input
|
|
</div>
|
|
|
|
<video id="video" style="display:none" autoplay playsinline></video>
|
|
|
|
<!-- Import maps polyfill -->
|
|
<!-- Remove this when import maps will be widely supported -->
|
|
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
|
|
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"three": "../build/three.module.js",
|
|
"three/addons/": "./jsm/"
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<script type="module">
|
|
|
|
import * as THREE from 'three';
|
|
|
|
import { OrbitControls } from 'three/addons/controls/OrbitControls.js';
|
|
|
|
let camera, scene, renderer, video;
|
|
|
|
init();
|
|
animate();
|
|
|
|
function init() {
|
|
|
|
camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 0.1, 100 );
|
|
camera.position.z = 0.01;
|
|
|
|
scene = new THREE.Scene();
|
|
|
|
video = document.getElementById( 'video' );
|
|
|
|
const texture = new THREE.VideoTexture( video );
|
|
|
|
const geometry = new THREE.PlaneGeometry( 16, 9 );
|
|
geometry.scale( 0.5, 0.5, 0.5 );
|
|
const material = new THREE.MeshBasicMaterial( { map: texture } );
|
|
|
|
const count = 128;
|
|
const radius = 32;
|
|
|
|
for ( let i = 1, l = count; i <= l; i ++ ) {
|
|
|
|
const phi = Math.acos( - 1 + ( 2 * i ) / l );
|
|
const theta = Math.sqrt( l * Math.PI ) * phi;
|
|
|
|
const mesh = new THREE.Mesh( geometry, material );
|
|
mesh.position.setFromSphericalCoords( radius, phi, theta );
|
|
mesh.lookAt( camera.position );
|
|
scene.add( mesh );
|
|
|
|
}
|
|
|
|
renderer = new THREE.WebGLRenderer( { antialias: true } );
|
|
renderer.setPixelRatio( window.devicePixelRatio );
|
|
renderer.setSize( window.innerWidth, window.innerHeight );
|
|
document.body.appendChild( renderer.domElement );
|
|
|
|
const controls = new OrbitControls( camera, renderer.domElement );
|
|
controls.enableZoom = false;
|
|
controls.enablePan = false;
|
|
|
|
window.addEventListener( 'resize', onWindowResize );
|
|
|
|
//
|
|
|
|
if ( navigator.mediaDevices && navigator.mediaDevices.getUserMedia ) {
|
|
|
|
const constraints = { video: { width: 1280, height: 720, facingMode: 'user' } };
|
|
|
|
navigator.mediaDevices.getUserMedia( constraints ).then( function ( stream ) {
|
|
|
|
// apply the stream to the video element used in the texture
|
|
|
|
video.srcObject = stream;
|
|
video.play();
|
|
|
|
} ).catch( function ( error ) {
|
|
|
|
console.error( 'Unable to access the camera/webcam.', error );
|
|
|
|
} );
|
|
|
|
} else {
|
|
|
|
console.error( 'MediaDevices interface not available.' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function onWindowResize() {
|
|
|
|
camera.aspect = window.innerWidth / window.innerHeight;
|
|
camera.updateProjectionMatrix();
|
|
|
|
renderer.setSize( window.innerWidth, window.innerHeight );
|
|
|
|
}
|
|
|
|
function animate() {
|
|
|
|
requestAnimationFrame( animate );
|
|
renderer.render( scene, camera );
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
|