我试图在2D渲染模型中显示一些带有XTK的本地DICOM / .dcm文件,这些文件是来自癌症成像档案中托管的RIDER数据集的LUNG CT图像,并且没有控制台抛出的错误,但图像是被输出为空白。文件和js中文件的相对链接是正确的,但仍然没有输出。
我还做了“开发人员抬头”构建:https://github.com/xtk/X/wiki/X:DevelopersHeadsUp, 以及尝试使用每晚构建:https://github.com/xtk/get/blob/gh-pages/xtk_nightly.js。
var _dicom = ['000008', '000009', '000010', '000011', '000012', '000013', '000014' , '000015' , '000016']; var r = new X.renderer2D(); r.orientation = 'Z'; r.init(); var v = new X.volume(); v.file = _dicom.sort().map(function(v) { return 'img/' + v + '.dcm'; }); r.add(v); r.onWindowLevel(); r.render(); $('canvas').attr('id', 'xtkCanvas'); r.onShowtime = function() { }; volume = v; };
我还通过使用OsiriX验证了DICOM文件未压缩...