有谁知道如何从DICOM文件中提取像素数据并将其传递给iOS上的图像查看器?
很抱歉,如果这是一个简单的问题,但它似乎是我打开的大量蠕虫的主要组成部分。
答案 0 :(得分:5)
我在iOS上使用GDCM。我还没有非常努力地推动它,但到目前为止它仍然运作良好。在ITK这篇优秀的文章中,我基本上遵循了黑客攻击XCode项目的指示。
以下是我为iOS编译的方法:
以下是您如何调用库并将结果放入Objective-C词典的粗略摘要:
NSMutableDictionary * imageDictionary = [[NSMutableDictionary alloc] initWithCapacity:40];
// The output of gdcm::Reader is a gdcm::File
gdcm::File &file = reader.GetFile();
// the dataset is the the set of element we are interested in:
gdcm::DataSet &ds = file.GetDataSet();
const Tag studyInstance(0x0020,0x000d); // Study Instance UID
const DataElement &dicomVal = ds.GetDataElement(studyInstance);
std::string stringVal( dicomVal.GetByteValue()->GetPointer(), dicomVal.GetByteValue()->GetLength() );
NSString *val = [NSString stringWithCString:stringVal.c_str() encoding:[NSString defaultCStringEncoding]];
[imageDictionary setObject:val forKey:@"studyInstanceUID"];
(注意:这是一个混合了C ++和ObjectiveC的* .mm文件)
答案 1 :(得分:1)
我想在swift或Objective-C的IOS项目中使用gdcm库,但无法成功。
我尝试了ccmake -G 'Xcode' ../gdcm
并从输出中导入二进制文件,但是遇到了错误can't map file, errno:22 file locations for architecture x86_64
。
我猜@Sean谈论的文章不是最新的。有任何教程或技巧吗?
答案 2 :(得分:0)
如果您想查找DICOM软件,请查看idoimaging.com,这是医疗成像软件的交换中心。您可以选择您的平台,输入格式,输出格式,语言等.iOS未列为格式,但其中列出的大部分软件都有源代码,在库中有用,可用于MacOS X.例如,我选择了:
并找到了几个包。考虑到MacOS和iOS之间的相似性以及其中一些是包含源代码的跨平台的事实,要让其中一个在iOS上工作应该不会太难。
答案 3 :(得分:0)
Imebra具有一个Objective-C包装器,该包装器也可以与Swift一起使用。
#import "imebraobjc/imebra.h"
// Get the DICOM dataset from file
NSError* error = nil;
ImebraDataSet* pDataSet = [ImebraCodecFactory loadFromFile:@"test.dcm" error:&error]
// CHeck the patient name (automatically convert from DICOM charsets to UTF-8)
NSString* checkPatientName = [pDataSet getString:[[ImebraTagId alloc] initWithGroup:0x10 tag:0x10] elementNumber:0 error:&error]; // Automatically converted to UTF-8 if necessary
// Get the frame 0
ImebraImage* pCheckImage = [pDataSet getImageApplyModalityTransform:0 error:&error];
// Get the image data
ImebraReadingDataHandlerNumeric* readingDataHandler = [pCheckImage getReadingDataHandler:&error];
// Scan the pixels. Access the data handler memory for faster data access
for(unsigned int pixel(0); pixel != readingDataHandler.size; ++pixel)
{
unsigned int pixelValue = [readingDataHandler getUnsignedLong:pixel error:&error];
}
ImebraDrawBitmap* pDrawBitmap = [[ImebraDrawBitmap alloc] init];
// Obtain a NSImage (UIImage on iOS)
NSImage* pNsImage = [pDrawBitmap getImebraImage:pCheckImage error:&pError];