Class RemapUIDs
- java.lang.Object
-
- com.pixelmed.apps.RemapUIDs
-
public class RemapUIDs extends java.lang.Object
A class to read a map of Study, Series, SOP Instance and Frame of Reference UIDs pairs, and then remap occurences in a set of DICOM files to the other member of the pair.
Useful, for example, when UIDs have been changed, annotations made, and there is a need to apply the annotations back to the originals.
- See Also:
UIDMapByMatchingPixelData
,MergeCompositeContext
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
RemapUIDs.OurMediaImporter
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
ourAETitle
-
Constructor Summary
Constructors Constructor Description RemapUIDs(java.lang.String uidmapFileName, java.lang.String srcFolderName, java.lang.String dstFolderName)
Change UIDs based on UID map file.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
main(java.lang.String[] arg)
Change UIDs based on UID map file.static void
remapUIDs(AttributeList list, java.util.Set<java.lang.String> setOfCanonicalUIDs, java.util.Map<java.lang.String,java.lang.String> mapOfOtherUIDToCanonicalUID)
Change all non-canonical UIDs that can be mapped to a canonical UID.
-
-
-
Constructor Detail
-
RemapUIDs
public RemapUIDs(java.lang.String uidmapFileName, java.lang.String srcFolderName, java.lang.String dstFolderName) throws java.io.FileNotFoundException, java.io.IOException, DicomException
Change UIDs based on UID map file.
The order of UIDs in the map file is important, the first of tab-separated multiple UIDs in one line being the canonical UID to which the others on the line are remapped.
- Parameters:
uidmapFileName
-srcFolderName
-dstFolderName
-- Throws:
java.io.FileNotFoundException
java.io.IOException
DicomException
-
-
Method Detail
-
remapUIDs
public static void remapUIDs(AttributeList list, java.util.Set<java.lang.String> setOfCanonicalUIDs, java.util.Map<java.lang.String,java.lang.String> mapOfOtherUIDToCanonicalUID)
Change all non-canonical UIDs that can be mapped to a canonical UID.
Leaves canonical UIDs, SOP Classes and anything unrecognized alone.
Recursively descends into sequences to process nested UIDs too.
- Parameters:
list
-setOfCanonicalUIDs
-mapOfOtherUIDToCanonicalUID
-
-
main
public static void main(java.lang.String[] arg)
Change UIDs based on UID map file.
The order of UIDs in the map file is important, the first of tab-separated multiple UIDs in one line being the canonical UID to which the others on the line are remapped.
- Parameters:
arg
- uidmapFileName srcFolderName dstFolderName
-
-