DCMTK는 DICOM 데이터 세트에서 개인 데이터 삭제
Howto: Remove private data from a DICOM dataset
There is no ready-to-use function in DCMTK to delete all private data from a DICOM dataset. However, using the API of DcmItem and the fact that all private data has an odd group number, it is pretty easy to do this. Here is some sample code for a corresponding function (not fully tested). It searches the given item recursively for private data and removes it if found:
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmdata/dctk.h"
void removeAllPrivateTags(DcmItem& dset)
{
DcmStack stack;
DcmObject *dobj = NULL;
DcmTagKey tag;
OFCondition status = dset.nextObject(stack, OFTrue);
while (status.good())
{
dobj = stack.top();
tag = dobj->getTag();
if (tag.getGroup() & 1) // private tag ?
{
stack.pop();
delete ((DcmItem *)(stack.top()))->remove(dobj);
}
status = dset.nextObject(stack, OFTrue);
}
}
See documentation of DcmFileFormat and example in dcmdata documentation how to get a DcmDataset (which is also an DcmItem object) from an existing DICOM file.
Note1: In the current DCMTK release, there is also an isPrivate() method which can be used with the above sample code.
Note2: DCMstack 클래스:
this class manages a stack of pointers to DcmObject instances.
The objects pointed to are never touched, e.g. deleted.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로컬에서 가져온 jpg 파일 그룹을 npy 형식의 데이터 집합으로 설정안녕하세요. 오늘, 나는 비망록의 방법으로 현지에서 가져온 이미지 그룹의 데이터 집합을 사용하는 제작 방법을 총괄하고 싶다. 또 이번 데이터 집합은 열거했다 옥스포드 대학이 공개한 동물 이미지 데이터 집합최대 37종...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.