DicomImage 的 writeBMP 函数产生不清晰的灰度图像

DicomImage's writeBMP function produces unclear gray image

我正在使用 DCMTK 读取并希望修改 DICOM 图像。我有以下代码:

#include <iostream>
#include <opencv\cv.h>
#include <dcmtk\dcmimgle\dcmimage.h>

int main() {
    try {
        DicomImage* dicomImage = new DicomImage("C:/Users/Kriselle/Documents/000004.dcm");
        if ((dicomImage != NULL) && (dicomImage->isMonochrome())) {
            dicomImage->writeBMP("C:/Users/Kriselle/Documents/z.bmp", 8);
            std::cout << "z.bmp is created" << std::endl;
        }
        else {
            std::cout << "dicomImage is null or not monochrome" << std::endl;
        }
    }
    catch (cv::Exception e) {
        std::cerr << e.what() << std::endl;
    }
    return 0;
}

我所做的只是创建一个 DicomImage 并将其像素数据写入具有我指定文件名的 BMP 文件,但图像 returns 只是一个灰色图像,原始图像的轮廓几乎无法识别。

它应该是这样的:https://www.dropbox.com/s/6dw8nlae8hfvqf6/000004.jpg?dl=0 这是代码产生的结果:https://www.dropbox.com/s/fff2kch124bzjqy/z.bmp?dl=0

我是不是遗漏了代码中的某些内容,还是我不明白该函数的作用?任何人都可以请赐教吗?非常感谢!

您可以在 DicomImage class, the default is that no VOI transformation is enabled when rendering monochrome DICOM images. In your case, this seems to be inappropriate, so you should specify a more appropriate VOI setting (e.g. a min-max window) or use one of the VOI windows stored in the DICOM dataset(如果有)的 API 文档中阅读。

顺便说一句,在构造函数中加载图像后,您还应该使用 getStatus() 方法检查此过程的状态。