-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.js
52 lines (47 loc) · 1.44 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// example node.js script for loading neurofinder data
//
// for more info see:
//
// - http://neurofinder.codeneuro.org
// - https://github.com/codeneuro/neurofinder
//
// requires a few node modules, install with `npm install <module>`
//
// "ndarray": "^1.0.18",
// "ndarray-imshow": "^1.0.1",
// "ndarray-ops": "^1.2.2",
// "progress": "^1.1.8",
// "tiff": "^1.1.0",
// "zeros": "^1.0.0"
//
var fs = require('fs')
var tiff = require('tiff')
var progress = require('progress')
var zeros = require('zeros')
var ndarray = require('ndarray')
var ops = require('ndarray-ops')
var imshow = require('ndarray-imshow')
// load images
var sum, mat, image, buffer
var files = fs.readdirSync('images')
var bar = new progress('loading [:bar] :percent :etas', { total: files.length , width: 50})
files.forEach(function (file, index) {
buffer = fs.readFileSync('images/' + file)
image = new tiff.TIFFDecoder(buffer).decode().ifd[0]
mat = ndarray(image.data, [image.width, image.height])
if (!sum) sum = zeros([image.width, image.height])
ops.add(sum, mat, sum)
bar.tick()
})
// load regions
var blob = JSON.parse(fs.readFileSync('regions/regions.json'))
var regions = blob.map(function (region) {return region.coordinates})
var mask = zeros(sum.shape)
regions.forEach(function (region) {
region.forEach(function (coordinate) {
mask.set(coordinate[0], coordinate[1], 1)
})
})
// show the outputs
imshow(sum, {colormap: 'gray'})
imshow(mask, {colormap: 'gray'})