我不是一个经验丰富的程序员,只需要在我的VS2010项目中添加一个DICOM查看器.我可以在
Windows窗体中显示图像,但无法弄清楚如何更改窗口中心和宽度.这是我的脚本:
DicomImage image = new DicomImage(_filename); int maxV = image.NumberOfFrames; sbSlice.Maximum = maxV - 1; image.WindowCenter = 7.0; double wc = image.WindowCenter; double ww = image.WindowWidth; Image result = image.RenderImage(0); DisplayImage(result);
那没起效.我不知道这是不是正确的方法.
解决方法
我查看了代码,看起来非常错.
https://github.com/rcd/fo-dicom/blob/master/DICOM/Imaging/DicomImage.cs
在当前的错误实现设置中,除非在Load()期间Dataset.Get(DicomTag.PhotometricInterpretation)为Monochrome1或Monochrome2,否则WindowCenter或WindowWidth属性无效.这已经很荒谬了,但它仍然无法使用,因为_renderOptions变量只设置在一个地方,并且立即用于创建_pipeline(不会让你有机会使用WindowCenter属性更改它).您唯一的机会是灰度_renderOptions初始化:_renderOptions = GrayscaleRenderOptions.FromDataset(Dataset);.
当前的解决方案:您的数据集应具有
> DicomTag.WindowCenter设置得当
> DicomTag.WindowWidth!= 0.0
> DicomTag.PhotometricInterpretation == Monochrome1或Monochrome2
以下代码实现了:
DicomDataset dataset = DicomFile.Open(fileName).Dataset; //dataset.Set(DicomTag.WindowWidth,200.0); //the WindowWidth must be non-zero dataset.Add(DicomTag.WindowCenter,"100.0"); //dataset.Add(DicomTag.PhotometricInterpretation,"MONOCHROME1"); //ValueRepresentations tag is broken dataset.Add(new DicomCodeString(DicomTag.PhotometricInterpretation,"MONOCHROME1")); DicomImage image = new DicomImage(dataset); image.RenderImage();
最好的解决方案:等待这个有缺陷的库修复.