我对将新的DICOM图像上传到webMango感到困惑。我能够在桌面版本中执行此操作,但我无法在webMango中执行此操作?是否可以使用WebMango查看DICOM图像?或不?
总是我必须提供参数吗? 好心劝告。 谢谢
答案 0 :(得分:0)
是的,您可以在webMango中查看DICOM图像。您将其配置为类似于Papaya,除了您需要在参数值周围加上双引号。 (另请注意,<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>webMango</title>
<script src="mango.js"></script>
<script src="https://www.java.com/js/deployJava.js"></script>
<script>
var params = [];
params["images"] = "[['data/volume/brain_001.dcm', 'data/volume/brain_002.dcm', 'data/volume/brain_003.dcm']]";
params["atlas"] = "data/Talairach.xml";
</script>
</head>
<body>
<p>This is an example use of webMango.</p>
<div style="width:800px;" class="mango"></div>
</body>
</html>
数组包含另一个DICOM系列URL数组。)以下是一个示例:
params
webMango无法看到本地文件系统。因此,您只能通过using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
const string FILENAME = @"\temp\test.xml";
public Form1()
{
InitializeComponent();
DataSet ds = new DataSet();
ds.ReadXml(FILENAME);
dataGridView1.DataSource = ds.Tables[1];
}
}
}
变量中的URL引用加载文件。我认为在技术上允许它看到本地文件系统是至关重要的(至少在某些平台上),但近年来浏览器一直在放弃对Java applet的支持,从而带来越来越多的障碍。在大多数情况下,我会推荐Papaya而不是webMango。