jpeg-depth
v1.0.2
Published
Extract depth information from (apple) jpeg images which have embedded depth information.
Readme
Cross platform jpeg depth map extractor (tested on Windows 10)
Usage
const getDepth = require('jpeg-depth');
const fs = require('fs');
const file = fs.readFileSync('./path/to/file');
const depthMap = getDepth(file);
fs.writeFileSync('./depthMap.jpg', depthMap);