ndconvert
v0.1.1
Published
Convert an image to an ndarray json file
Downloads
3
Readme
ndconvert
A CLI tool for converting images (PNG) to ndarray json files.
Basically it is Mikola Lysenko's script copied and turned into a binary to run anywhere.
example
You have an image ./terrain.png. Convert it with
ndconvert terrain.png > terrain.json. Then in your module use it with:
var decodeBase64 = require('base64-js').toByteArray
var ndarray = require('ndarray')
var terrain = require('./terrain.json')
var texture = ndarray(
new Uint8Array(decodeBase64(terrain.data)),
terrain.shape,
terrain.stride,
terrain.offset
)install
With npm do:
npm install ndconvert -grelease history
- 0.1.0 - initial release
