DICOM 시퀀스 이미지 세트에서 DCMTK 가져오기
Howto: Get information from a sequence item
The following example shows, how to get the Code Meaning from the Procedure Code Sequence.
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmdata/dctk.h"
int main(int argc, char *argv[])
{
DcmFileFormat fileformat;
if (fileformat.loadFile("test.dcm").good())
{
DcmItem *item = NULL;
DcmDataset *dataset = fileformat.getDataset();
if (dataset->findAndGetSequenceItem(DCM_ProcedureCodeSequence, item, 0 /* first item */).good())
{
OFString codeMeaning;
if (item->findAndGetOFString(DCM_CodeMeaning, codeMeaning).good())
{
/* output value of "codeMeaning" or do something else with this information */
}
}
}
return 0;
}
------------------------------------------------------------------
유북풍
http://qimo601.iteye.com
전재:
http://support.dcmtk.org/wiki/dcmtk/howto/getsequenceitem
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Sql의 실행 순서가 어떻게 되는지 알려드릴게요.select*단지 당신이 Sql 대문에 들어서는 첫걸음일 뿐, 실제 업무에서 틀림없이 이렇게 간단하지 않을 것이다.우리 예를 하나 봅시다. 위의 요구 사항을 수행하려면 다음과 같이 Sql을 사용할 수 있습니다. 위의...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.