与DICOM文件一样,是否可以使用XTK显示.nii文件的简单示例?
答案 0 :(得分:3)
最简单的情况就是那样
// create and initialize a 3D renderer
var r = new X.renderer3D();
r.init();
// create a X.volume
var volume = new X.volume();
// .. and attach the single-file dicom in .NII format
// this works with gzip/gz/raw encoded NII files but XTK also supports other
// formats like MGH/MGZ, NRRD and DICOM
volume.file = 'http://x.babymri.org/?avf.nii';
r.add(volume);
r.render();
第10课显示更高级的内容:http://lessons.goxtk.com/10/