# 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 vtkSEPReader(__vtkmodules_vtkCommonExecutionModel.vtkImageAlgorithm):
    """
    vtkSEPReader - Stanford Exploration Project files reader.
    
    Superclass: vtkImageAlgorithm
    
    This reader takes a .H file that points to a .H@ file and contains
    all the information to interpret the raw data in the  .H@ file.
    """
    def CanReadFile(self, __a): # real signature unknown; restored from __doc__
        """
        CanReadFile(self, __a:str) -> bool
        C++: bool CanReadFile(const char *)
        """
        return False

    def GetAllDimensions(self): # real signature unknown; restored from __doc__
        """
        GetAllDimensions(self) -> vtkStringArray
        C++: virtual vtkStringArray *GetAllDimensions()
        
        Array containing the name of all dimensions. Contains ESize
        elements.
        """
        pass

    def GetAllRanges(self): # real signature unknown; restored from __doc__
        """
        GetAllRanges(self) -> vtkStringArray
        C++: virtual vtkStringArray *GetAllRanges()
        
        Array containing the name and the size of all dimensions. The two
        first entries are the header. Contains 2*ESize elements.
        """
        pass

    def GetDataOrigin(self): # real signature unknown; restored from __doc__
        """
        GetDataOrigin(self) -> Pointer
        C++: virtual double *GetDataOrigin()
        """
        pass

    def GetDataSpacing(self): # real signature unknown; restored from __doc__
        """
        GetDataSpacing(self) -> Pointer
        C++: virtual double *GetDataSpacing()
        """
        pass

    def GetExtentSplitMode(self): # real signature unknown; restored from __doc__
        """
        GetExtentSplitMode(self) -> int
        C++: virtual int GetExtentSplitMode()
        """
        return 0

    def GetFileName(self): # real signature unknown; restored from __doc__
        """
        GetFileName(self) -> str
        C++: virtual const char *GetFileName()
        """
        return ""

    def GetFixedDimRange(self): # real signature unknown; restored from __doc__
        """
        GetFixedDimRange(self) -> (int, int)
        C++: virtual int *GetFixedDimRange()
        """
        pass

    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 GetOutputGridDimension(self): # real signature unknown; restored from __doc__
        """
        GetOutputGridDimension(self) -> int
        C++: virtual int GetOutputGridDimension()
        
        When 2D mode is true, the third dimension is
        ignored and the output is in 2D.
        """
        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) -> vtkSEPReader
        C++: vtkSEPReader *NewInstance()
        """
        return vtkSEPReader

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkSEPReader
        C++: static vtkSEPReader *SafeDownCast(vtkObjectBase *o)
        """
        return vtkSEPReader

    def SetExtentSplitMode(self, _arg): # real signature unknown; restored from __doc__
        """
        SetExtentSplitMode(self, _arg:int) -> None
        C++: virtual void SetExtentSplitMode(int _arg)
        
        Specify extent translator split mode.
        Default: vtkExtentTranslator::BLOCK_MODE
        """
        pass

    def SetFileName(self, arg): # real signature unknown; restored from __doc__
        """
        SetFileName(self, arg:str) -> None
        C++: virtual void SetFileName(const char *arg)
        
        Specify file name for the SEP Header file.
        """
        pass

    def SetFixedDimension1(self, arg): # real signature unknown; restored from __doc__
        """
        SetFixedDimension1(self, arg:str) -> None
        C++: virtual void SetFixedDimension1(const char *arg)
        """
        pass

    def SetFixedDimension2(self, arg): # real signature unknown; restored from __doc__
        """
        SetFixedDimension2(self, arg:str) -> None
        C++: virtual void SetFixedDimension2(const char *arg)
        """
        pass

    def SetFixedDimensionValue1(self, _arg): # real signature unknown; restored from __doc__
        """
        SetFixedDimensionValue1(self, _arg:int) -> None
        C++: virtual void SetFixedDimensionValue1(int _arg)
        """
        pass

    def SetFixedDimensionValue2(self, _arg): # real signature unknown; restored from __doc__
        """
        SetFixedDimensionValue2(self, _arg:int) -> None
        C++: virtual void SetFixedDimensionValue2(int _arg)
        """
        pass

    def SetOutputGridDimension(self, _arg): # real signature unknown; restored from __doc__
        """
        SetOutputGridDimension(self, _arg:int) -> None
        C++: virtual void SetOutputGridDimension(int _arg)
        """
        pass

    def SetXDimension(self, arg): # real signature unknown; restored from __doc__
        """
        SetXDimension(self, arg:str) -> None
        C++: virtual void SetXDimension(const char *arg)
        
        Specify the name for each spatial / fixed dimension. ZDimension
        is only used for 3D output. FixedDimension2 is only used for 2D
        output.
        """
        pass

    def SetYDimension(self, arg): # real signature unknown; restored from __doc__
        """
        SetYDimension(self, arg:str) -> None
        C++: virtual void SetYDimension(const char *arg)
        """
        pass

    def SetZDimension(self, arg): # real signature unknown; restored from __doc__
        """
        SetZDimension(self, arg:str) -> None
        C++: virtual void SetZDimension(const char *arg)
        """
        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."""


    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkSEPReader', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetFileName': <method 'SetFileName' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetFileName': <method 'GetFileName' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetOutputGridDimension': <method 'GetOutputGridDimension' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetOutputGridDimension': <method 'SetOutputGridDimension' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetExtentSplitMode': <method 'SetExtentSplitMode' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetExtentSplitMode': <method 'GetExtentSplitMode' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetDataOrigin': <method 'GetDataOrigin' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetDataSpacing': <method 'GetDataSpacing' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetAllDimensions': <method 'GetAllDimensions' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetAllRanges': <method 'GetAllRanges' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetXDimension': <method 'SetXDimension' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetYDimension': <method 'SetYDimension' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetZDimension': <method 'SetZDimension' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetFixedDimension1': <method 'SetFixedDimension1' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetFixedDimension2': <method 'SetFixedDimension2' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetFixedDimensionValue1': <method 'SetFixedDimensionValue1' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'SetFixedDimensionValue2': <method 'SetFixedDimensionValue2' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'GetFixedDimRange': <method 'GetFixedDimRange' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, 'CanReadFile': <method 'CanReadFile' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF8393BA3B0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkIOImage.vtkSEPReader' objects>, '__doc__': 'vtkSEPReader - Stanford Exploration Project files reader.\\n\\nSuperclass: vtkImageAlgorithm\\n\\nThis reader takes a .H file that points to a .H@ file and contains\\nall the information to interpret the raw data in the  .H@ file.\\n\\n'})"
    __vtkname__ = 'vtkSEPReader'


