DICOM SOP Class registry.
Provides compile-time lookup of all 232 DICOM SOP Classes (183 storage + 49 service/query/print/etc.).
Each SOP class has a struct with uid, name, type, modality, and retired status. All lookups are O(1) via compile-time maps and MapSets.
Generated via mix dicom.gen_sop_classes from:
priv/sops.json(innolitics/dicom-standard)priv/service_sop_classes.exs(hand-maintained)
Reference: DICOM PS3.4.
Summary
Functions
Returns only active (non-retired) SOP classes.
Returns all registered SOP classes.
Returns storage SOP classes for the given DICOM modality code.
Returns SOP classes of the given type.
Returns the SOP class for the given UID.
Returns true if the UID is a known SOP class.
Returns the human-readable name of the SOP class.
Returns true if the UID is a retired SOP class.
Returns all storage SOP classes.
Returns true if the UID is a storage SOP class. O(1) MapSet lookup.
Types
Functions
@spec active() :: [t()]
Returns only active (non-retired) SOP classes.
@spec all() :: [t()]
Returns all registered SOP classes.
Returns storage SOP classes for the given DICOM modality code.
Returns SOP classes of the given type.
Returns the SOP class for the given UID.
Returns true if the UID is a known SOP class.
Returns the human-readable name of the SOP class.
Returns true if the UID is a retired SOP class.
@spec storage() :: [t()]
Returns all storage SOP classes.
Returns true if the UID is a storage SOP class. O(1) MapSet lookup.