将 bmp 图像转换为 DICOM
我有 800 张 BMP 格式的图像,我想将它们转换为 DICOM。我已经这样开始了,但由于某种原因它不起作用。
我对 VTK 的经验有限:
file_in = 'C:/programfile/image.bmp'
file_out = 'test1.dcm'
vtkGDCMImageReader()
I have 800 images in BMP format and I would like to convert them into DICOM. I have started like this, but it is not working for some reason.
My experience with VTK is limited:
file_in = 'C:/programfile/image.bmp'
file_out = 'test1.dcm'
vtkGDCMImageReader()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是Python中的:
如果您的输入BMP使用查找表,您可以简单地传递它:
反之(DICOM -> BMP):
当然您可以从命令行执行此操作,只需使用 gdcm2vtk:
或
Here it is in python:
If your input BMP uses lookup table, you can simply pass it:
And the opposite (DICOM -> BMP):
Of course you can do it from the command line, simply use gdcm2vtk:
or