请问有做过DICOM图像格式转换的前辈吗?请教一个问题,我是才学习DICOM不长时间,还在看别人的代码,在使用dcmtk工具时候遇到一个问题,请哪位学VC编程的帮我看看好吗?谢谢~~
下载的dcmtk开发包,编译成exe文件时候出错,信息如下:
ofConsole.lockCerr() << "Error: DcmSequenceOfItems::readSubItem(): cannot create SubItem " << newTag << endl;
错误提示:
C:\dcmsource\dcmtk\dcmdata\libsrc\dcsequen.cxx(517) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'const class DcmTag' (or there is no acceptable conversion)
ofConsole.lockCerr() << "Warning: DcmItem: parse error occurred: " << newTag << endl;
错误提示:
C:\dcmsource\dcmtk\dcmdata\libsrc\dcitem.cxx(1007) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'class DcmTag' (or there is no acceptable conversion)
~~每个类都有相似的11处这样的出错提示~~
我估计会不会是"<<"符号问题,不是很清楚,请有这方面研究的前辈指教一下~~ |