uniqueidentifier

How to generate SOPInstance UID for DICOM file?

How to generate SOPInstance UID for DICOM file? Question: I am developing a system which will be able to create structured report for PACS. Obviously in order to create a DICOM instance (file containing Report data), I need three UIDs for Study, Series and Instance. StudyUID and SeriesUID must be the same as that of …

Total answers: 5

How to generate unique 64 bits integers from Python?

How to generate unique 64 bits integers from Python? Question: I need to generate unique 64 bits integers from Python. I’ve checked out the UUID module. But the UUID it generates are 128 bits integers. So that wouldn’t work. Do you know of any way to generate 64 bits unique integers within Python? Thanks. Asked …

Total answers: 5

How to create a GUID/UUID in Python

How to create a GUID/UUID in Python Question: How do I create a GUID/UUID in Python that is platform independent? I hear there is a method using ActivePython on Windows but it’s Windows only because it uses COM. Is there a method using plain Python? Asked By: Jonathon Watney || Source Answers: The uuid module …

Total answers: 9