我正在使用木瓜来查看DICOM图像。 http://ric.uthscsa.edu/mango/papaya.html
我想知道如何使用键盘键移动到下一个切片。 由于所有命令都嵌入在javascript文件中,是否有我应该寻找的特定功能?
请帮忙。
答案 0 :(得分:0)
查看viewer.js中的incrementAxial()
,incrementCoronal()
和incrementSagittal()
函数:
papaya.viewer.Viewer.prototype.incrementAxial
papaya.viewer.Viewer.prototype.incrementCoronal
papaya.viewer.Viewer.prototype.incrementSagittal
它们接受一个参数,一个布尔值来表示是递增(true)还是递减(false)。
为了知道哪一个要递增,您需要知道哪个切片方向是主切片。请参阅下面的示例,了解如何处理它:
if (this.mainImage.sliceDirection === papaya.viewer.ScreenSlice.DIRECTION_AXIAL) {
this.incrementAxial(false);
} else if (this.mainImage.sliceDirection === papaya.viewer.ScreenSlice.DIRECTION_CORONAL) {
this.incrementCoronal(false);
} else if (this.mainImage.sliceDirection === papaya.viewer.ScreenSlice.DIRECTION_SAGITTAL) {
this.incrementSagittal(true);
}