node-itk
Version:
ITK is an open-source, cross-platform system that provides developers with an extensive suite of software tools for image analysis. Among them, Node-ITK is a node.js wrapper which built on top of ITK, intended to facilitate its use in rapid prototyping, education, and web servies for Medical Image Processing.Its Origins by My master thesis--jolly, a new Framework for Medical Image Processing
13 lines (11 loc) • 442 B
JavaScript
var node_itk = null;
// Load the precompiled binary for windows.
if(process.platform == "win32" && process.arch == "x64") {
node_itk = require('./bin/winx64/node-itk');
} else if(process.platform == "win32" && process.arch == "ia32") {
node_itk = require('./bin/winx86/node-itk');
} else {
// Load the new built binary for other platforms.
node_itk = require('./build/Release/node-itk');
}
module.exports = node_itk;