# encoding: utf-8
# module vtkmodules.vtkIOImage
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkIOImage.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel


class vtkMedicalImageProperties(__vtkmodules_vtkCommonCore.vtkObject):
    """
    vtkMedicalImageProperties - some medical image properties.
    
    Superclass: vtkObject
    
    vtkMedicalImageProperties is a helper class that can be used by
    medical image readers and applications to encapsulate medical
    image/acquisition properties. Later on, this should probably be
    extended to add any user-defined property.
    @sa
    vtkMedicalImageReader2
    """
    def AddUserDefinedValue(self, name, value): # real signature unknown; restored from __doc__
        """
        AddUserDefinedValue(self, name:str, value:str) -> None
        C++: virtual void AddUserDefinedValue(const char *name,
            const char *value)
        """
        pass

    def AddWindowLevelPreset(self, w, l): # real signature unknown; restored from __doc__
        """
        AddWindowLevelPreset(self, w:float, l:float) -> int
        C++: virtual int AddWindowLevelPreset(double w, double l)
        
        Add/Remove/Query the window/level presets that may have been
        associated to a medical image. Window is also known as 'width',
        level is also known as 'center'. The same window/level pair can
        not be added twice. As a convenience, a comment (aka Explanation)
        can be associated to a preset. For ex:
         DICOM Window Center (0028,1050) = 00045\000470
         DICOM Window Width  (0028,1051) = 0106\03412
         DICOM Window Center Width Explanation (0028,1055) = WINDOW1\WINDOW2
        """
        return 0

    def Clear(self): # real signature unknown; restored from __doc__
        """
        Clear(self) -> None
        C++: virtual void Clear()
        
        Convenience method to reset all fields to an empty string/value
        """
        pass

    def DeepCopy(self, p): # real signature unknown; restored from __doc__
        """
        DeepCopy(self, p:vtkMedicalImageProperties) -> None
        C++: virtual void DeepCopy(vtkMedicalImageProperties *p)
        
        Copy the contents of p to this instance.
        """
        pass

    def GetAcquisitionDate(self): # real signature unknown; restored from __doc__
        """
        GetAcquisitionDate(self) -> str
        C++: virtual char *GetAcquisitionDate()
        """
        return ""

    def GetAcquisitionDateDay(self): # real signature unknown; restored from __doc__
        """
        GetAcquisitionDateDay(self) -> int
        C++: int GetAcquisitionDateDay()
        """
        return 0

    def GetAcquisitionDateMonth(self): # real signature unknown; restored from __doc__
        """
        GetAcquisitionDateMonth(self) -> int
        C++: int GetAcquisitionDateMonth()
        """
        return 0

    def GetAcquisitionDateYear(self): # real signature unknown; restored from __doc__
        """
        GetAcquisitionDateYear(self) -> int
        C++: int GetAcquisitionDateYear()
        """
        return 0

    def GetAcquisitionTime(self): # real signature unknown; restored from __doc__
        """
        GetAcquisitionTime(self) -> str
        C++: virtual char *GetAcquisitionTime()
        """
        return ""

    def GetAgeAsFields(self, age, year, month, week, day): # real signature unknown; restored from __doc__
        """
        GetAgeAsFields(age:str, year:int, month:int, week:int, day:int)
            -> int
        C++: static int GetAgeAsFields(const char *age, int &year,
            int &month, int &week, int &day)
        
        Take as input a string in VR=AS (DICOM PS3.5) and extract either
        different fields namely: year month week day Return 0 on error, 1
        on success One can test fields if they are different from -1 upon
        success
        """
        return 0

    def GetConvolutionKernel(self): # real signature unknown; restored from __doc__
        """
        GetConvolutionKernel(self) -> str
        C++: virtual char *GetConvolutionKernel()
        """
        return ""

    def GetDateAsFields(self, date, year, month, day): # real signature unknown; restored from __doc__
        """
        GetDateAsFields(date:str, year:int, month:int, day:int) -> int
        C++: static int GetDateAsFields(const char *date, int &year,
            int &month, int &day)
        
        Take as input a string in ISO 8601 date (YYYY/MM/DD) and extract
        the different fields namely: year month day Return 0 on error, 1
        on success
        """
        return 0

    def GetDateAsLocale(self, date, locale): # real signature unknown; restored from __doc__
        """
        GetDateAsLocale(date:str, locale:str) -> int
        C++: static int GetDateAsLocale(const char *date, char *locale)
        
        Take as input a string in ISO 8601 date (YYYY/MM/DD) and
        construct a locale date based on the different fields (see
        GetDateAsFields to extract different fields) Return 0 on error, 1
        on success
        """
        return 0

    def GetDirectionCosine(self): # real signature unknown; restored from __doc__
        """
        GetDirectionCosine(self) -> (float, float, float, float, float,
            float)
        C++: virtual double *GetDirectionCosine()
        """
        pass

    def GetEchoTime(self): # real signature unknown; restored from __doc__
        """
        GetEchoTime(self) -> str
        C++: virtual char *GetEchoTime()
        """
        return ""

    def GetEchoTrainLength(self): # real signature unknown; restored from __doc__
        """
        GetEchoTrainLength(self) -> str
        C++: virtual char *GetEchoTrainLength()
        """
        return ""

    def GetExposure(self): # real signature unknown; restored from __doc__
        """
        GetExposure(self) -> str
        C++: virtual char *GetExposure()
        """
        return ""

    def GetExposureTime(self): # real signature unknown; restored from __doc__
        """
        GetExposureTime(self) -> str
        C++: virtual char *GetExposureTime()
        """
        return ""

    def GetGantryTilt(self): # real signature unknown; restored from __doc__
        """
        GetGantryTilt(self) -> str
        C++: virtual char *GetGantryTilt()
        """
        return ""

    def GetGantryTiltAsDouble(self): # real signature unknown; restored from __doc__
        """
        GetGantryTiltAsDouble(self) -> float
        C++: virtual double GetGantryTiltAsDouble()
        """
        return 0.0

    def GetImageDate(self): # real signature unknown; restored from __doc__
        """
        GetImageDate(self) -> str
        C++: virtual char *GetImageDate()
        """
        return ""

    def GetImageDateDay(self): # real signature unknown; restored from __doc__
        """
        GetImageDateDay(self) -> int
        C++: int GetImageDateDay()
        """
        return 0

    def GetImageDateMonth(self): # real signature unknown; restored from __doc__
        """
        GetImageDateMonth(self) -> int
        C++: int GetImageDateMonth()
        """
        return 0

    def GetImageDateYear(self): # real signature unknown; restored from __doc__
        """
        GetImageDateYear(self) -> int
        C++: int GetImageDateYear()
        """
        return 0

    def GetImageNumber(self): # real signature unknown; restored from __doc__
        """
        GetImageNumber(self) -> str
        C++: virtual char *GetImageNumber()
        """
        return ""

    def GetImageTime(self): # real signature unknown; restored from __doc__
        """
        GetImageTime(self) -> str
        C++: virtual char *GetImageTime()
        """
        return ""

    def GetInstanceUIDFromSliceID(self, volumeidx, sliceid): # real signature unknown; restored from __doc__
        """
        GetInstanceUIDFromSliceID(self, volumeidx:int, sliceid:int) -> str
        C++: const char *GetInstanceUIDFromSliceID(int volumeidx,
            int sliceid)
        
        Mapping from a sliceidx within a volumeidx into a DICOM Instance
        UID Some DICOM reader can populate this structure so that later
        on from a slice index in a vtkImageData volume we can backtrack
        and find out which 2d slice it was coming from
        """
        return ""

    def GetInstitutionName(self): # real signature unknown; restored from __doc__
        """
        GetInstitutionName(self) -> str
        C++: virtual char *GetInstitutionName()
        """
        return ""

    def GetKVP(self): # real signature unknown; restored from __doc__
        """
        GetKVP(self) -> str
        C++: virtual char *GetKVP()
        """
        return ""

    def GetManufacturer(self): # real signature unknown; restored from __doc__
        """
        GetManufacturer(self) -> str
        C++: virtual char *GetManufacturer()
        """
        return ""

    def GetManufacturerModelName(self): # real signature unknown; restored from __doc__
        """
        GetManufacturerModelName(self) -> str
        C++: virtual char *GetManufacturerModelName()
        """
        return ""

    def GetModality(self): # real signature unknown; restored from __doc__
        """
        GetModality(self) -> str
        C++: virtual char *GetModality()
        """
        return ""

    def GetNthWindowLevelPreset(self, idx, w, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetNthWindowLevelPreset(self, idx:int, w:[float, ...], l:[float,
            ...]) -> int
        C++: virtual int GetNthWindowLevelPreset(int idx, double *w,
            double *l)
        GetNthWindowLevelPreset(self, idx:int) -> (float, float)
        C++: virtual double *GetNthWindowLevelPreset(int idx)
        """
        pass

    def GetNthWindowLevelPresetComment(self, idx): # real signature unknown; restored from __doc__
        """
        GetNthWindowLevelPresetComment(self, idx:int) -> str
        C++: virtual const char *GetNthWindowLevelPresetComment(int idx)
        """
        return ""

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfUserDefinedValues(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfUserDefinedValues(self) -> int
        C++: virtual unsigned int GetNumberOfUserDefinedValues()
        """
        return 0

    def GetNumberOfWindowLevelPresets(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfWindowLevelPresets(self) -> int
        C++: virtual int GetNumberOfWindowLevelPresets()
        """
        return 0

    def GetOrientationType(self, volumeidx): # real signature unknown; restored from __doc__
        """
        GetOrientationType(self, volumeidx:int) -> int
        C++: int GetOrientationType(int volumeidx)
        """
        return 0

    def GetPatientAge(self): # real signature unknown; restored from __doc__
        """
        GetPatientAge(self) -> str
        C++: virtual char *GetPatientAge()
        """
        return ""

    def GetPatientAgeDay(self): # real signature unknown; restored from __doc__
        """
        GetPatientAgeDay(self) -> int
        C++: int GetPatientAgeDay()
        """
        return 0

    def GetPatientAgeMonth(self): # real signature unknown; restored from __doc__
        """
        GetPatientAgeMonth(self) -> int
        C++: int GetPatientAgeMonth()
        """
        return 0

    def GetPatientAgeWeek(self): # real signature unknown; restored from __doc__
        """
        GetPatientAgeWeek(self) -> int
        C++: int GetPatientAgeWeek()
        """
        return 0

    def GetPatientAgeYear(self): # real signature unknown; restored from __doc__
        """
        GetPatientAgeYear(self) -> int
        C++: int GetPatientAgeYear()
        """
        return 0

    def GetPatientBirthDate(self): # real signature unknown; restored from __doc__
        """
        GetPatientBirthDate(self) -> str
        C++: virtual char *GetPatientBirthDate()
        """
        return ""

    def GetPatientBirthDateDay(self): # real signature unknown; restored from __doc__
        """
        GetPatientBirthDateDay(self) -> int
        C++: int GetPatientBirthDateDay()
        """
        return 0

    def GetPatientBirthDateMonth(self): # real signature unknown; restored from __doc__
        """
        GetPatientBirthDateMonth(self) -> int
        C++: int GetPatientBirthDateMonth()
        """
        return 0

    def GetPatientBirthDateYear(self): # real signature unknown; restored from __doc__
        """
        GetPatientBirthDateYear(self) -> int
        C++: int GetPatientBirthDateYear()
        """
        return 0

    def GetPatientID(self): # real signature unknown; restored from __doc__
        """
        GetPatientID(self) -> str
        C++: virtual char *GetPatientID()
        """
        return ""

    def GetPatientName(self): # real signature unknown; restored from __doc__
        """
        GetPatientName(self) -> str
        C++: virtual char *GetPatientName()
        """
        return ""

    def GetPatientSex(self): # real signature unknown; restored from __doc__
        """
        GetPatientSex(self) -> str
        C++: virtual char *GetPatientSex()
        """
        return ""

    def GetRepetitionTime(self): # real signature unknown; restored from __doc__
        """
        GetRepetitionTime(self) -> str
        C++: virtual char *GetRepetitionTime()
        """
        return ""

    def GetSeriesDescription(self): # real signature unknown; restored from __doc__
        """
        GetSeriesDescription(self) -> str
        C++: virtual char *GetSeriesDescription()
        """
        return ""

    def GetSeriesNumber(self): # real signature unknown; restored from __doc__
        """
        GetSeriesNumber(self) -> str
        C++: virtual char *GetSeriesNumber()
        """
        return ""

    def GetSliceIDFromInstanceUID(self, volumeidx, uid): # real signature unknown; restored from __doc__
        """
        GetSliceIDFromInstanceUID(self, volumeidx:int, uid:str) -> int
        C++: int GetSliceIDFromInstanceUID(int &volumeidx,
            const char *uid)
        
        Provides the inverse mapping. Returns -1 if a slice for this uid
        is not found.
        """
        return 0

    def GetSliceThickness(self): # real signature unknown; restored from __doc__
        """
        GetSliceThickness(self) -> str
        C++: virtual char *GetSliceThickness()
        """
        return ""

    def GetSliceThicknessAsDouble(self): # real signature unknown; restored from __doc__
        """
        GetSliceThicknessAsDouble(self) -> float
        C++: virtual double GetSliceThicknessAsDouble()
        """
        return 0.0

    def GetStationName(self): # real signature unknown; restored from __doc__
        """
        GetStationName(self) -> str
        C++: virtual char *GetStationName()
        """
        return ""

    def GetStringFromOrientationType(self, type): # real signature unknown; restored from __doc__
        """
        GetStringFromOrientationType(type:int) -> str
        C++: static const char *GetStringFromOrientationType(
            unsigned int type)
        """
        return ""

    def GetStudyDate(self): # real signature unknown; restored from __doc__
        """
        GetStudyDate(self) -> str
        C++: virtual char *GetStudyDate()
        """
        return ""

    def GetStudyDescription(self): # real signature unknown; restored from __doc__
        """
        GetStudyDescription(self) -> str
        C++: virtual char *GetStudyDescription()
        """
        return ""

    def GetStudyID(self): # real signature unknown; restored from __doc__
        """
        GetStudyID(self) -> str
        C++: virtual char *GetStudyID()
        """
        return ""

    def GetStudyTime(self): # real signature unknown; restored from __doc__
        """
        GetStudyTime(self) -> str
        C++: virtual char *GetStudyTime()
        """
        return ""

    def GetTimeAsFields(self, time, hour, minute, second): # real signature unknown; restored from __doc__
        """
        GetTimeAsFields(time:str, hour:int, minute:int, second:int) -> int
        C++: static int GetTimeAsFields(const char *time, int &hour,
            int &minute, int &second)
        
        Take as input a string in VR:TM format (HHMMSS) and extract the
        different fields namely: hour, minute and second Return 0 on
        error, 1 on success
        """
        return 0

    def GetUserDefinedNameByIndex(self, idx): # real signature unknown; restored from __doc__
        """
        GetUserDefinedNameByIndex(self, idx:int) -> str
        C++: virtual const char *GetUserDefinedNameByIndex(
            unsigned int idx)
        """
        return ""

    def GetUserDefinedValue(self, name): # real signature unknown; restored from __doc__
        """
        GetUserDefinedValue(self, name:str) -> str
        C++: virtual const char *GetUserDefinedValue(const char *name)
        """
        return ""

    def GetUserDefinedValueByIndex(self, idx): # real signature unknown; restored from __doc__
        """
        GetUserDefinedValueByIndex(self, idx:int) -> str
        C++: virtual const char *GetUserDefinedValueByIndex(
            unsigned int idx)
        """
        return ""

    def GetWindowLevelPresetIndex(self, w, l): # real signature unknown; restored from __doc__
        """
        GetWindowLevelPresetIndex(self, w:float, l:float) -> int
        C++: virtual int GetWindowLevelPresetIndex(double w, double l)
        """
        return 0

    def GetXRayTubeCurrent(self): # real signature unknown; restored from __doc__
        """
        GetXRayTubeCurrent(self) -> str
        C++: virtual char *GetXRayTubeCurrent()
        """
        return ""

    def HasWindowLevelPreset(self, w, l): # real signature unknown; restored from __doc__
        """
        HasWindowLevelPreset(self, w:float, l:float) -> int
        C++: virtual int HasWindowLevelPreset(double w, double l)
        """
        return 0

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkMedicalImageProperties
        C++: vtkMedicalImageProperties *NewInstance()
        """
        return vtkMedicalImageProperties

    def RemoveAllUserDefinedValues(self): # real signature unknown; restored from __doc__
        """
        RemoveAllUserDefinedValues(self) -> None
        C++: virtual void RemoveAllUserDefinedValues()
        """
        pass

    def RemoveAllWindowLevelPresets(self): # real signature unknown; restored from __doc__
        """
        RemoveAllWindowLevelPresets(self) -> None
        C++: virtual void RemoveAllWindowLevelPresets()
        """
        pass

    def RemoveWindowLevelPreset(self, w, l): # real signature unknown; restored from __doc__
        """
        RemoveWindowLevelPreset(self, w:float, l:float) -> None
        C++: virtual void RemoveWindowLevelPreset(double w, double l)
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkMedicalImageProperties
        C++: static vtkMedicalImageProperties *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkMedicalImageProperties

    def SetAcquisitionDate(self, _arg): # real signature unknown; restored from __doc__
        """
        SetAcquisitionDate(self, _arg:str) -> None
        C++: virtual void SetAcquisitionDate(const char *_arg)
        
        Acquisition Date Format: yyyymmdd For ex: DICOM (0008,0022) =
        20030617
        """
        pass

    def SetAcquisitionTime(self, _arg): # real signature unknown; restored from __doc__
        """
        SetAcquisitionTime(self, _arg:str) -> None
        C++: virtual void SetAcquisitionTime(const char *_arg)
        
        Acquisition time Format: hhmmss.frac (any trailing component(s)
        can be omitted) For ex: DICOM (0008,0032) = 162552.0705 or
        230012, or 0012
        """
        pass

    def SetConvolutionKernel(self, _arg): # real signature unknown; restored from __doc__
        """
        SetConvolutionKernel(self, _arg:str) -> None
        C++: virtual void SetConvolutionKernel(const char *_arg)
        
        Convolution Kernel (or algorithm used to reconstruct the data)
        For ex: DICOM (0018,1210) = Bone
        """
        pass

    def SetDirectionCosine(self, _arg1, _arg2, _arg3, _arg4, _arg5, _arg6): # real signature unknown; restored from __doc__
        """
        SetDirectionCosine(self, _arg1:float, _arg2:float, _arg3:float,
            _arg4:float, _arg5:float, _arg6:float) -> None
        C++: virtual void SetDirectionCosine(double _arg1, double _arg2,
            double _arg3, double _arg4, double _arg5, double _arg6)
        SetDirectionCosine(self, _arg:(float, float, float, float, float,
            float)) -> None
        C++: virtual void SetDirectionCosine(const double _arg[6])
        
        Get the direction cosine (default to 1,0,0,0,1,0)
        """
        pass

    def SetEchoTime(self, _arg): # real signature unknown; restored from __doc__
        """
        SetEchoTime(self, _arg:str) -> None
        C++: virtual void SetEchoTime(const char *_arg)
        
        Echo Time (Time in ms between the middle of the excitation pulse
        and the peak of the echo produced) For ex: DICOM (0018,0081) =
        105
        """
        pass

    def SetEchoTrainLength(self, _arg): # real signature unknown; restored from __doc__
        """
        SetEchoTrainLength(self, _arg:str) -> None
        C++: virtual void SetEchoTrainLength(const char *_arg)
        
        Echo Train Length (Number of lines in k-space acquired per
        excitation per image) For ex: DICOM (0018,0091) = 35
        """
        pass

    def SetExposure(self, _arg): # real signature unknown; restored from __doc__
        """
        SetExposure(self, _arg:str) -> None
        C++: virtual void SetExposure(const char *_arg)
        
        Exposure (The exposure expressed in mAs, for example calculated
        from Exposure Time and X-ray Tube Current) For ex: DICOM
        (0018,1152) = 114
        """
        pass

    def SetExposureTime(self, _arg): # real signature unknown; restored from __doc__
        """
        SetExposureTime(self, _arg:str) -> None
        C++: virtual void SetExposureTime(const char *_arg)
        
        Exposure time (time of x-ray exposure in msec) For ex: DICOM
        (0018,1150) = 5
        """
        pass

    def SetGantryTilt(self, _arg): # real signature unknown; restored from __doc__
        """
        SetGantryTilt(self, _arg:str) -> None
        C++: virtual void SetGantryTilt(const char *_arg)
        
        Gantry/Detector tilt (Nominal angle of tilt in degrees of the
        scanning gantry.) For ex: DICOM (0018,1120) = 15
        """
        pass

    def SetImageDate(self, _arg): # real signature unknown; restored from __doc__
        """
        SetImageDate(self, _arg:str) -> None
        C++: virtual void SetImageDate(const char *_arg)
        
        Image Date aka Content Date Format: yyyymmdd For ex: DICOM
        (0008,0023) = 20030617
        """
        pass

    def SetImageNumber(self, _arg): # real signature unknown; restored from __doc__
        """
        SetImageNumber(self, _arg:str) -> None
        C++: virtual void SetImageNumber(const char *_arg)
        
        Image number For ex: DICOM (0020,0013) = 1
        """
        pass

    def SetImageTime(self, _arg): # real signature unknown; restored from __doc__
        """
        SetImageTime(self, _arg:str) -> None
        C++: virtual void SetImageTime(const char *_arg)
        
        Image Time Format: hhmmss.frac (any trailing component(s) can be
        omitted) For ex: DICOM (0008,0033) = 162552.0705 or 230012, or
        0012
        """
        pass

    def SetInstanceUIDFromSliceID(self, volumeidx, sliceid, uid): # real signature unknown; restored from __doc__
        """
        SetInstanceUIDFromSliceID(self, volumeidx:int, sliceid:int,
            uid:str) -> None
        C++: void SetInstanceUIDFromSliceID(int volumeidx, int sliceid,
            const char *uid)
        """
        pass

    def SetInstitutionName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetInstitutionName(self, _arg:str) -> None
        C++: virtual void SetInstitutionName(const char *_arg)
        
        Institution Name For ex: DICOM (0008,0080) = FooCity Medical
        Center
        """
        pass

    def SetKVP(self, _arg): # real signature unknown; restored from __doc__
        """
        SetKVP(self, _arg:str) -> None
        C++: virtual void SetKVP(const char *_arg)
        
        Peak kilo voltage output of the (x-ray) generator used For ex:
        DICOM (0018,0060) = 120
        """
        pass

    def SetManufacturer(self, _arg): # real signature unknown; restored from __doc__
        """
        SetManufacturer(self, _arg:str) -> None
        C++: virtual void SetManufacturer(const char *_arg)
        
        Manufacturer For ex: DICOM (0008,0070) = Siemens
        """
        pass

    def SetManufacturerModelName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetManufacturerModelName(self, _arg:str) -> None
        C++: virtual void SetManufacturerModelName(const char *_arg)
        
        Manufacturer's Model Name For ex: DICOM (0008,1090) = LightSpeed
        QX/i
        """
        pass

    def SetModality(self, _arg): # real signature unknown; restored from __doc__
        """
        SetModality(self, _arg:str) -> None
        C++: virtual void SetModality(const char *_arg)
        
        Modality For ex: DICOM (0008,0060)= CT
        """
        pass

    def SetNthWindowLevelPresetComment(self, idx, comment): # real signature unknown; restored from __doc__
        """
        SetNthWindowLevelPresetComment(self, idx:int, comment:str) -> None
        C++: virtual void SetNthWindowLevelPresetComment(int idx,
            const char *comment)
        """
        pass

    def SetOrientationType(self, volumeidx, orientation): # real signature unknown; restored from __doc__
        """
        SetOrientationType(self, volumeidx:int, orientation:int) -> None
        C++: void SetOrientationType(int volumeidx, int orientation)
        """
        pass

    def SetPatientAge(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPatientAge(self, _arg:str) -> None
        C++: virtual void SetPatientAge(const char *_arg)
        
        Patient age Format: nnnD, nnW, nnnM or nnnY (eventually nnD, nnW,
        nnY) with D (day), M (month), W (week), Y (year) For ex: DICOM
        (0010,1010) = 031Y
        """
        pass

    def SetPatientBirthDate(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPatientBirthDate(self, _arg:str) -> None
        C++: virtual void SetPatientBirthDate(const char *_arg)
        
        Patient birth date Format: yyyymmdd For ex: DICOM (0010,0030) =
        19680427
        """
        pass

    def SetPatientID(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPatientID(self, _arg:str) -> None
        C++: virtual void SetPatientID(const char *_arg)
        
        Patient ID For ex: DICOM (0010,0020) = 1933197
        """
        pass

    def SetPatientName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPatientName(self, _arg:str) -> None
        C++: virtual void SetPatientName(const char *_arg)
        
        Patient name For ex: DICOM (0010,0010) = DOE,JOHN
        """
        pass

    def SetPatientSex(self, _arg): # real signature unknown; restored from __doc__
        """
        SetPatientSex(self, _arg:str) -> None
        C++: virtual void SetPatientSex(const char *_arg)
        
        Patient sex For ex: DICOM (0010,0040) = M
        """
        pass

    def SetRepetitionTime(self, _arg): # real signature unknown; restored from __doc__
        """
        SetRepetitionTime(self, _arg:str) -> None
        C++: virtual void SetRepetitionTime(const char *_arg)
        
        Repetition Time The period of time in msec between the beginning
        of a pulse sequence and the beginning of the succeeding
        (essentially identical) pulse sequence. For ex: DICOM (0018,0080)
        = 2040
        """
        pass

    def SetSeriesDescription(self, _arg): # real signature unknown; restored from __doc__
        """
        SetSeriesDescription(self, _arg:str) -> None
        C++: virtual void SetSeriesDescription(const char *_arg)
        
        Series Description User provided description of the Series For
        ex: DICOM (0008,103e) = SCOUT
        """
        pass

    def SetSeriesNumber(self, _arg): # real signature unknown; restored from __doc__
        """
        SetSeriesNumber(self, _arg:str) -> None
        C++: virtual void SetSeriesNumber(const char *_arg)
        
        Series number For ex: DICOM (0020,0011) = 902
        """
        pass

    def SetSliceThickness(self, _arg): # real signature unknown; restored from __doc__
        """
        SetSliceThickness(self, _arg:str) -> None
        C++: virtual void SetSliceThickness(const char *_arg)
        
        Slice Thickness (Nominal reconstructed slice thickness, in mm)
        For ex: DICOM (0018,0050) = 0.273438
        """
        pass

    def SetStationName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetStationName(self, _arg:str) -> None
        C++: virtual void SetStationName(const char *_arg)
        
        Station Name For ex: DICOM (0008,1010) = LSPD_OC8
        """
        pass

    def SetStudyDate(self, _arg): # real signature unknown; restored from __doc__
        """
        SetStudyDate(self, _arg:str) -> None
        C++: virtual void SetStudyDate(const char *_arg)
        
        Study Date Format: yyyymmdd For ex: DICOM (0008,0020) = 20030617
        """
        pass

    def SetStudyDescription(self, _arg): # real signature unknown; restored from __doc__
        """
        SetStudyDescription(self, _arg:str) -> None
        C++: virtual void SetStudyDescription(const char *_arg)
        
        Study description For ex: DICOM (0008,1030) = BRAIN/C-SP/FACIAL
        """
        pass

    def SetStudyID(self, _arg): # real signature unknown; restored from __doc__
        """
        SetStudyID(self, _arg:str) -> None
        C++: virtual void SetStudyID(const char *_arg)
        
        Study ID For ex: DICOM (0020,0010) = 37481
        """
        pass

    def SetStudyTime(self, _arg): # real signature unknown; restored from __doc__
        """
        SetStudyTime(self, _arg:str) -> None
        C++: virtual void SetStudyTime(const char *_arg)
        
        Study Time Format: hhmmss.frac (any trailing component(s) can be
        omitted) For ex: DICOM (0008,0030) = 162552.0705 or 230012, or
        0012
        """
        pass

    def SetXRayTubeCurrent(self, _arg): # real signature unknown; restored from __doc__
        """
        SetXRayTubeCurrent(self, _arg:str) -> None
        C++: virtual void SetXRayTubeCurrent(const char *_arg)
        
        X-ray tube current (in mA) For ex: DICOM (0018,1151) = 400
        """
        pass

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    AXIAL = 0
    CORONAL = 1
    SAGITTAL = 2
    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkMedicalImageProperties', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'Clear': <method 'Clear' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetPatientName': <method 'SetPatientName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientName': <method 'GetPatientName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetPatientID': <method 'SetPatientID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientID': <method 'GetPatientID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetPatientAge': <method 'SetPatientAge' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientAge': <method 'GetPatientAge' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetAgeAsFields': <method 'GetAgeAsFields' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientAgeYear': <method 'GetPatientAgeYear' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientAgeMonth': <method 'GetPatientAgeMonth' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientAgeWeek': <method 'GetPatientAgeWeek' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientAgeDay': <method 'GetPatientAgeDay' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetPatientSex': <method 'SetPatientSex' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientSex': <method 'GetPatientSex' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetPatientBirthDate': <method 'SetPatientBirthDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientBirthDate': <method 'GetPatientBirthDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientBirthDateYear': <method 'GetPatientBirthDateYear' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientBirthDateMonth': <method 'GetPatientBirthDateMonth' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetPatientBirthDateDay': <method 'GetPatientBirthDateDay' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetStudyDate': <method 'SetStudyDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetStudyDate': <method 'GetStudyDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetAcquisitionDate': <method 'SetAcquisitionDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetAcquisitionDate': <method 'GetAcquisitionDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetAcquisitionDateYear': <method 'GetAcquisitionDateYear' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetAcquisitionDateMonth': <method 'GetAcquisitionDateMonth' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetAcquisitionDateDay': <method 'GetAcquisitionDateDay' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetStudyTime': <method 'SetStudyTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetStudyTime': <method 'GetStudyTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetAcquisitionTime': <method 'SetAcquisitionTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetAcquisitionTime': <method 'GetAcquisitionTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetImageDate': <method 'SetImageDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetImageDate': <method 'GetImageDate' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetImageDateYear': <method 'GetImageDateYear' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetImageDateMonth': <method 'GetImageDateMonth' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetImageDateDay': <method 'GetImageDateDay' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetDateAsFields': <method 'GetDateAsFields' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetTimeAsFields': <method 'GetTimeAsFields' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetDateAsLocale': <method 'GetDateAsLocale' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetImageTime': <method 'SetImageTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetImageTime': <method 'GetImageTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetImageNumber': <method 'SetImageNumber' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetImageNumber': <method 'GetImageNumber' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetSeriesNumber': <method 'SetSeriesNumber' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetSeriesNumber': <method 'GetSeriesNumber' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetSeriesDescription': <method 'SetSeriesDescription' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetSeriesDescription': <method 'GetSeriesDescription' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetStudyID': <method 'SetStudyID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetStudyID': <method 'GetStudyID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetStudyDescription': <method 'SetStudyDescription' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetStudyDescription': <method 'GetStudyDescription' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetModality': <method 'SetModality' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetModality': <method 'GetModality' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetManufacturer': <method 'SetManufacturer' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetManufacturer': <method 'GetManufacturer' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetManufacturerModelName': <method 'SetManufacturerModelName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetManufacturerModelName': <method 'GetManufacturerModelName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetStationName': <method 'SetStationName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetStationName': <method 'GetStationName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetInstitutionName': <method 'SetInstitutionName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetInstitutionName': <method 'GetInstitutionName' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetConvolutionKernel': <method 'SetConvolutionKernel' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetConvolutionKernel': <method 'GetConvolutionKernel' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetSliceThickness': <method 'SetSliceThickness' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetSliceThickness': <method 'GetSliceThickness' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetSliceThicknessAsDouble': <method 'GetSliceThicknessAsDouble' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetKVP': <method 'SetKVP' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetKVP': <method 'GetKVP' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetGantryTilt': <method 'SetGantryTilt' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetGantryTilt': <method 'GetGantryTilt' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetGantryTiltAsDouble': <method 'GetGantryTiltAsDouble' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetEchoTime': <method 'SetEchoTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetEchoTime': <method 'GetEchoTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetEchoTrainLength': <method 'SetEchoTrainLength' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetEchoTrainLength': <method 'GetEchoTrainLength' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetRepetitionTime': <method 'SetRepetitionTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetRepetitionTime': <method 'GetRepetitionTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetExposureTime': <method 'SetExposureTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetExposureTime': <method 'GetExposureTime' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetXRayTubeCurrent': <method 'SetXRayTubeCurrent' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetXRayTubeCurrent': <method 'GetXRayTubeCurrent' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetExposure': <method 'SetExposure' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetExposure': <method 'GetExposure' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetDirectionCosine': <method 'SetDirectionCosine' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetDirectionCosine': <method 'GetDirectionCosine' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'AddUserDefinedValue': <method 'AddUserDefinedValue' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetUserDefinedValue': <method 'GetUserDefinedValue' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetNumberOfUserDefinedValues': <method 'GetNumberOfUserDefinedValues' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetUserDefinedNameByIndex': <method 'GetUserDefinedNameByIndex' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetUserDefinedValueByIndex': <method 'GetUserDefinedValueByIndex' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'RemoveAllUserDefinedValues': <method 'RemoveAllUserDefinedValues' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'AddWindowLevelPreset': <method 'AddWindowLevelPreset' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'RemoveWindowLevelPreset': <method 'RemoveWindowLevelPreset' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'RemoveAllWindowLevelPresets': <method 'RemoveAllWindowLevelPresets' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetNumberOfWindowLevelPresets': <method 'GetNumberOfWindowLevelPresets' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'HasWindowLevelPreset': <method 'HasWindowLevelPreset' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetWindowLevelPresetIndex': <method 'GetWindowLevelPresetIndex' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetNthWindowLevelPreset': <method 'GetNthWindowLevelPreset' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetNthWindowLevelPresetComment': <method 'SetNthWindowLevelPresetComment' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetNthWindowLevelPresetComment': <method 'GetNthWindowLevelPresetComment' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetInstanceUIDFromSliceID': <method 'GetInstanceUIDFromSliceID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetInstanceUIDFromSliceID': <method 'SetInstanceUIDFromSliceID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetSliceIDFromInstanceUID': <method 'GetSliceIDFromInstanceUID' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetOrientationType': <method 'GetOrientationType' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'SetOrientationType': <method 'SetOrientationType' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'GetStringFromOrientationType': <method 'GetStringFromOrientationType' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'DeepCopy': <method 'DeepCopy' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, 'AXIAL': 0, 'CORONAL': 1, 'SAGITTAL': 2, '__new__': <built-in method __new__ of type object at 0x00007FF8393B5980>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkIOImage.vtkMedicalImageProperties' objects>, '__doc__': 'vtkMedicalImageProperties - some medical image properties.\\n\\nSuperclass: vtkObject\\n\\nvtkMedicalImageProperties is a helper class that can be used by\\nmedical image readers and applications to encapsulate medical\\nimage/acquisition properties. Later on, this should probably be\\nextended to add any user-defined property.\\n@sa\\nvtkMedicalImageReader2\\n\\n'})"
    __vtkname__ = 'vtkMedicalImageProperties'


