27 | the third dimension viewer 28 |
29 |-
57 |
58 |
Move your {{Modernizr.devicemotion && Modernizr.mobile ? 'device' : 'cursor'}} around to see the effect
90 |├── app ├── CNAME ├── styles │ ├── _rwd.scss │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── _mixins.scss │ ├── _poor.scss │ ├── _bootstrap-mixins.scss │ ├── _animations.scss │ ├── _bootstrap.scss │ ├── _icomoon.scss │ └── main.scss ├── .buildignore ├── robots.txt ├── icon.png ├── logo.png ├── favicon.png ├── preview.gif ├── samples │ ├── hut-depth.jpg │ ├── hut-image.jpg │ ├── hut-thumb.jpg │ ├── mango-depth.jpg │ ├── mango-image.jpg │ ├── mango-thumb.jpg │ ├── shelf-depth.jpg │ ├── shelf-image.jpg │ ├── shelf-thumb.jpg │ ├── flowers-depth.jpg │ ├── flowers-image.jpg │ ├── flowers-thumb.jpg │ ├── tunnel-depth.jpg │ ├── tunnel-image.jpg │ ├── tunnel-thumb.jpg │ ├── hut-alternative.jpg │ ├── mango-alternative.jpg │ ├── shelf-alternative.jpg │ ├── tunnel-alternative.jpg │ └── flowers-alternative.jpg ├── views │ ├── howto-lensblur.html │ ├── options-style.html │ ├── options-debug.html │ ├── alert-noimage.html │ ├── alert-modal.html │ ├── alert-webgl.html │ ├── options-movement.html │ ├── options-animation.html │ ├── alert-nodepth.html │ ├── share-popup.html │ ├── export-gif-popup.html │ ├── export-png-modal.html │ ├── export-jpg-modal.html │ ├── options-popup.html │ ├── export-anaglyph-modal.html │ ├── export-webm-popup.html │ ├── export-webm-modal.html │ ├── image-info-modal.html │ ├── share-png-modal.html │ ├── export-gif-modal.html │ ├── draw.html │ └── main.html ├── scripts │ ├── directives │ │ ├── depthyViewer.js │ │ ├── fileselect.js │ │ ├── visibleClass.js │ │ ├── pixi.js │ │ ├── shareurls.js │ │ └── rangeStepper.js │ ├── modernizr-platform.js │ ├── controllers │ │ ├── exportpngmodal.js │ │ ├── exportanaglyphmodal.js │ │ ├── exportwebmmodal.js │ │ ├── exportjpgmodal.js │ │ ├── imageinfomodal.js │ │ ├── sharepngmodal.js │ │ ├── exportgifmodal.js │ │ ├── draw.js │ │ └── main.js │ ├── pixi │ │ ├── utils.js │ │ ├── ColorMatrixFilter2.js │ │ ├── DepthDisplacementFilter.js │ │ └── DepthPerspectiveFilter.glsl │ ├── services │ │ ├── UpdateCheck.js │ │ └── statemodal.js │ ├── classes │ │ ├── dataURITools.js │ │ ├── DepthyDrawer.js │ │ └── GDepthEncoder.js │ ├── vendor │ │ ├── LensBlurDepthExtractor.js │ │ └── md5.js │ ├── app.js │ └── modernizr.js ├── images │ └── logo.svg ├── 404.html └── index.html ├── .gitattributes ├── .bowerrc ├── .gitignore ├── .travis.yml ├── Depthy.sublime-project ├── test ├── runner.html ├── spec │ ├── services │ │ └── statemodal.js │ ├── directives │ │ ├── pixi.js │ │ └── fileselect.js │ ├── controllers │ │ ├── main.js │ │ ├── viewer.js │ │ ├── exportmodal.js │ │ ├── sharepngmodal.js │ │ └── imageinfomodal.js │ └── classes │ │ └── GDepthEncoder.js └── .jshintrc ├── docker ├── sources.list └── Dockerfile ├── .editorconfig ├── .jshintrc ├── bower.json ├── LICENSE ├── package.json ├── karma-e2e.conf.js ├── karma.conf.js └── README.md /app/CNAME: -------------------------------------------------------------------------------- 1 | depthy.me -------------------------------------------------------------------------------- /app/styles/_rwd.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/icon.png -------------------------------------------------------------------------------- /app/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/logo.png -------------------------------------------------------------------------------- /app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/favicon.png -------------------------------------------------------------------------------- /app/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/preview.gif -------------------------------------------------------------------------------- /app/samples/hut-depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/hut-depth.jpg -------------------------------------------------------------------------------- /app/samples/hut-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/hut-image.jpg -------------------------------------------------------------------------------- /app/samples/hut-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/hut-thumb.jpg -------------------------------------------------------------------------------- /app/samples/mango-depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/mango-depth.jpg -------------------------------------------------------------------------------- /app/samples/mango-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/mango-image.jpg -------------------------------------------------------------------------------- /app/samples/mango-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/mango-thumb.jpg -------------------------------------------------------------------------------- /app/samples/shelf-depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/shelf-depth.jpg -------------------------------------------------------------------------------- /app/samples/shelf-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/shelf-image.jpg -------------------------------------------------------------------------------- /app/samples/shelf-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/shelf-thumb.jpg -------------------------------------------------------------------------------- /app/samples/flowers-depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/flowers-depth.jpg -------------------------------------------------------------------------------- /app/samples/flowers-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/flowers-image.jpg -------------------------------------------------------------------------------- /app/samples/flowers-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/flowers-thumb.jpg -------------------------------------------------------------------------------- /app/samples/tunnel-depth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/tunnel-depth.jpg -------------------------------------------------------------------------------- /app/samples/tunnel-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/tunnel-image.jpg -------------------------------------------------------------------------------- /app/samples/tunnel-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/tunnel-thumb.jpg -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | .sass-cache 5 | app/bower_components 6 | *.sublime-workspace 7 | -------------------------------------------------------------------------------- /app/samples/hut-alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/hut-alternative.jpg -------------------------------------------------------------------------------- /app/samples/mango-alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/mango-alternative.jpg -------------------------------------------------------------------------------- /app/samples/shelf-alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/shelf-alternative.jpg -------------------------------------------------------------------------------- /app/samples/tunnel-alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/tunnel-alternative.jpg -------------------------------------------------------------------------------- /app/samples/flowers-alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafe/depthy/master/app/samples/flowers-alternative.jpg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '0.8' 4 | - '0.10' 5 | before_script: 6 | - 'npm install -g bower grunt-cli' 7 | - 'bower install' 8 | -------------------------------------------------------------------------------- /Depthy.sublime-project: -------------------------------------------------------------------------------- 1 | { 2 | "folders": 3 | [ 4 | { 5 | "path": ".", 6 | "folder_exclude_patterns": ["node_modules", ".tmp"] 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /app/styles/_mixins.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | @function remify($v) { 4 | @if $v == false or unit($v) != "px" { 5 | @return $v; 6 | } @else { 7 | @return ($v / $font-size-base) * 1rem; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /app/views/howto-lensblur.html: -------------------------------------------------------------------------------- 1 |
3 | Bla bla bla 4 |
5 |6 | Sorry, this image could not be loaded. 7 |
8 |9 | {{message}} 10 |
11 |6 | Sorry, Depthy works only on browsers supporting WebGL. 7 |
8 |9 | Unfortunately, there's no official support on iOS. It should work on your Mac / PC / Android though. 10 |
11 |12 | It's strange, because it should work on Android. Check the latest Chrome, Firefox or Opera. 13 | Built-in browsers may not be fully supported. 14 |
15 |6 | Depthy works with photos shot using LensBlur camera mode, or created with Depthy itself. 7 |
8 |12 | {{depthy.downloadInstructions}} to save it. 13 |
14 | 15 | 19 | 23 | 24 |12 | {{depthy.downloadInstructions}} to save it. 13 |
14 | 15 | 19 | 23 | 24 |12 | {{depthy.downloadInstructions}} to save it. 13 |
14 | 15 | 19 | 20 | 24 | 25 | 26 |Sorry, but the page you were trying to view does not exist.
146 |It looks like this was the result of either:
147 |Depthy shows Google Camera Lens Blur photos with 3D parallax effect and creates animated GIFs from them. Plus extracts the depth map and enables you to create your own!
46 | 47 |Unfortunately your browser is not supported.
Use something newer, like Chrome for example.
27 | the third dimension viewer 28 |
29 |Move your {{Modernizr.devicemotion && Modernizr.mobile ? 'device' : 'cursor'}} around to see the effect
90 |