(xWxW__text__TEXT&@Z^__data__DATA&@(0ey__cstring__TEXTP,[/__const__DATAKxNh__compact_unwind__LDhL0Oi'__eh_frame__TEXTHQ0T h2  jd(qD P((*:UHH=H5H7,H uHH=H]ÐUH]fDUHSPHH=H5H+H uHH=H5+HHt H tH[]H=H[]fUHAVSH0HuH.HEЋFEHEHEH}ȃHuH]H=+HAtDH=1IHt1H=0IHtH=*IHt HLcHuL1H0[A^]UHAWAVSH(HuH8.HED~D}HG]ԉ]؅yHHLw(HEMA)Au{HuH}}L}tH=)LAtuH=HLtbH=HLtOH=HLto>?)????@Z@AA=BLBBBICWCCClD{DDDEE.FBFGGGGhHHH IIIJ2JvtkImageImportvtkIOImagePython.vtkImageImportvtkImageImport - Import data from a C array. Superclass: vtkImageAlgorithm vtkImageImport provides methods needed to import image data from a source independent of VTK, such as a simple C array or a third-party pipeline. Note that the VTK convention is for the image voxel index (0,0,0) to be the lower-left corner of the image, while most 2D image formats use the upper-left corner. You can use vtkImageFlip to correct the orientation after the image has been loaded into VTK. Note that is also possible to import the raw data from a Python string instead of from a C array. The array applies on scalar point data only, not on cell data. @sa vtkImageExport IsTypeOfV.IsTypeOf(string) -> 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. IsAV.IsA(string) -> 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. SafeDownCastV.SafeDownCast(vtkObjectBase) -> vtkImageImport C++: static vtkImageImport *SafeDownCast(vtkObjectBase *o) NewInstanceV.NewInstance() -> vtkImageImport C++: vtkImageImport *NewInstance() CopyImportVoidPointerV.CopyImportVoidPointer(void, int) C++: void CopyImportVoidPointer(void *ptr, vtkIdType size) Import data and make an internal copy of it. If you do not want VTK to copy the data, then use SetImportVoidPointer instead (do not use both). Give the size of the data array in bytes. SetImportVoidPointerV.SetImportVoidPointer(void) C++: void SetImportVoidPointer(void *ptr) V.SetImportVoidPointer(void, int) C++: void SetImportVoidPointer(void *ptr, int save) Set the pointer from which the image data is imported. VTK will not make its own copy of the data, it will access the data directly from the supplied array. VTK will not attempt to delete the data nor modify the data. GetImportVoidPointerV.GetImportVoidPointer() -> void C++: void *GetImportVoidPointer() Set the pointer from which the image data is imported. VTK will not make its own copy of the data, it will access the data directly from the supplied array. VTK will not attempt to delete the data nor modify the data. SetDataScalarTypeV.SetDataScalarType(int) C++: virtual void SetDataScalarType(int _arg) Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetDataScalarTypeToDoubleV.SetDataScalarTypeToDouble() C++: void SetDataScalarTypeToDouble() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetDataScalarTypeToFloatV.SetDataScalarTypeToFloat() C++: void SetDataScalarTypeToFloat() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetDataScalarTypeToIntV.SetDataScalarTypeToInt() C++: void SetDataScalarTypeToInt() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetDataScalarTypeToShortV.SetDataScalarTypeToShort() C++: void SetDataScalarTypeToShort() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetDataScalarTypeToUnsignedShortV.SetDataScalarTypeToUnsignedShort() C++: void SetDataScalarTypeToUnsignedShort() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetDataScalarTypeToUnsignedCharV.SetDataScalarTypeToUnsignedChar() C++: void SetDataScalarTypeToUnsignedChar() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. GetDataScalarTypeV.GetDataScalarType() -> int C++: virtual int GetDataScalarType() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. GetDataScalarTypeAsStringV.GetDataScalarTypeAsString() -> string C++: const char *GetDataScalarTypeAsString() Set/Get the data type of pixels in the imported data. This is used as the scalar type of the Output. Default: Short. SetNumberOfScalarComponentsV.SetNumberOfScalarComponents(int) C++: virtual void SetNumberOfScalarComponents(int _arg) Set/Get the number of scalar components, for RGB images this must be 3. Default: 1. GetNumberOfScalarComponentsV.GetNumberOfScalarComponents() -> int C++: virtual int GetNumberOfScalarComponents() Set/Get the number of scalar components, for RGB images this must be 3. Default: 1. SetDataExtentV.SetDataExtent(int, int, int, int, int, int) C++: void SetDataExtent(int, int, int, int, int, int) V.SetDataExtent((int, int, int, int, int, int)) C++: void SetDataExtent(int a[6]) GetDataExtentV.GetDataExtent() -> (int, int, int, int, int, int) C++: int *GetDataExtent() SetDataExtentToWholeExtentV.SetDataExtentToWholeExtent() C++: void SetDataExtentToWholeExtent() Get/Set the extent of the data buffer. The dimensions of your data must be equal to (extent[1]-extent[0]+1) * (extent[3]-extent[2]+1) * (extent[5]-DataExtent[4]+1). For example, for a 2D image use (0,width-1, 0,height-1, 0,0). SetDataSpacingV.SetDataSpacing(float, float, float) C++: void SetDataSpacing(double, double, double) V.SetDataSpacing((float, float, float)) C++: void SetDataSpacing(double a[3]) GetDataSpacingV.GetDataSpacing() -> (float, float, float) C++: double *GetDataSpacing() SetDataOriginV.SetDataOrigin(float, float, float) C++: void SetDataOrigin(double, double, double) V.SetDataOrigin((float, float, float)) C++: void SetDataOrigin(double a[3]) GetDataOriginV.GetDataOrigin() -> (float, float, float) C++: double *GetDataOrigin() SetWholeExtentV.SetWholeExtent(int, int, int, int, int, int) C++: void SetWholeExtent(int, int, int, int, int, int) V.SetWholeExtent((int, int, int, int, int, int)) C++: void SetWholeExtent(int a[6]) GetWholeExtentV.GetWholeExtent() -> (int, int, int, int, int, int) C++: int *GetWholeExtent() SetScalarArrayNameV.SetScalarArrayName(string) C++: virtual void SetScalarArrayName(const char *_arg) Set/get the scalar array name for this data set. Initial value is "scalars". GetScalarArrayNameV.GetScalarArrayName() -> string C++: virtual char *GetScalarArrayName() Set/get the scalar array name for this data set. Initial value is "scalars". SetCallbackUserDataV.SetCallbackUserData(void) C++: virtual void SetCallbackUserData(void *_arg) Set/Get the user data which will be passed as the first argument to all of the third-party pipeline callbacks. GetCallbackUserDataV.GetCallbackUserData() -> void C++: virtual void *GetCallbackUserData() Set/Get the user data which will be passed as the first argument to all of the third-party pipeline callbacks. InvokePipelineModifiedCallbacksV.InvokePipelineModifiedCallbacks() -> int C++: int InvokePipelineModifiedCallbacks() Invoke the appropriate callbacks InvokeUpdateInformationCallbacksV.InvokeUpdateInformationCallbacks() C++: void InvokeUpdateInformationCallbacks() Invoke the appropriate callbacks InvokeExecuteInformationCallbacksV.InvokeExecuteInformationCallbacks() C++: void InvokeExecuteInformationCallbacks() Invoke the appropriate callbacks InvokeExecuteDataCallbacksV.InvokeExecuteDataCallbacks() C++: void InvokeExecuteDataCallbacks() Invoke the appropriate callbacks LegacyCheckWholeExtentV.LegacyCheckWholeExtent() C++: void LegacyCheckWholeExtent() Invoke the appropriate callbacks vtkImageAlgorithmvtkAlgorithmvtkObjectvtkObjectBasep_voidvoidbitcharsigned charunsigned charshortunsigned shortintunsigned intlongunsigned longlong longunsigned long long__int64unsigned __int64floatdoubleidtypestringunicode stringvariantobjectUndefinedJJJJJJKKK$KhKnKuK|KJJ2K&I-.-K-D=yH-ri*-L.-GV-4P-#R-K-.-U-R-AK-+D=I-*-.-}W-iQ-XR-K-?-;-9-sT-f.-\I-F.-2K-T-.-I-y.-eMJ-@"/-.-I-E-b-b-b-wfb-^EN-K-I-/-.-E-b-yb-qfb-^Mb-E2N-C-,-3-B-7-zslV]-IB3-=6/B-'!7-'&%$#xh"`XH!@8(  xh`XH@8( xh`XH@8(     xh `XH@8( @08=<A821@X>0:4xph`XPH@80( `@ `@ `@ `@ `@ &'P? ~ > v k pAP A    I0  p  S  K}  P- @ `  " @ @ 0  !`" 0#@ # `$ $k%)`_L_p"jF6zZ?m"d?C^KFM>_PyType_Ready__ZN14vtkImageImport21CopyImportVoidPointerEPvx__ZN13vtkPythonArgs8GetValueERx_PyvtkImageImport_ClassNew_PyvtkImageAlgorithm_ClassNew_PyVTKObject_New__ZL26PyvtkImageImport_StaticNewv__ZdaPv__ZN14vtkImageImport20SetImportVoidPointerEPv__ZN14vtkImageImport3NewEv__ZN14vtkImageImport22LegacyCheckWholeExtentEv__ZN14vtkImageImport33InvokeExecuteInformationCallbacksEv__ZN14vtkImageImport32InvokeUpdateInformationCallbacksEv__ZN14vtkImageImport31InvokePipelineModifiedCallbacksEv__ZN14vtkImageImport26InvokeExecuteDataCallbacksEv_PyVTKAddFile_vtkImageImport_PyVTKObject_GetSet__Py_NoneStruct_PyVTKObject_GetObject__ZL24PyvtkImageImport_Methods_PyObject_GenericSetAttr_PyObject_GenericGetAttr_PyVTKObject_Repr_PyVTKObject_AsBuffer_PyErr_Clear_strcmp__ZN13vtkPythonArgs9GetBufferERPvP10bufferinfo_strlen__Znam___stack_chk_fail_PyObject_GC_Del_PyVTKObject_Check__ZN14vtkImageImport20SetImportVoidPointerEPvi__ZN13vtkPythonArgs8GetArrayEPii__ZN13vtkPythonArgs10BuildTupleEPKii__ZN13vtkPythonArgs13ArgCountErrorEii__ZN13vtkPythonArgs8GetArrayEPdi__ZN13vtkPythonArgs10BuildTupleEPKdi__ZN13vtkPythonArgs8GetValueERi_PyLong_FromLong_PyUnicode_FromString_PyDict_SetItemString_PyVTKObject_String_PyVTKObject_SetFlag_PyBytes_FromStringAndSize_PyUnicode_FromStringAndSize_PyVTKObject_Delete_PyVTKObject_Traverse_PyBuffer_Release__ZN13vtkPythonUtil20GetObjectFromPointerEP13vtkObjectBase__ZL21PyvtkImageImport_Type_PyType_Type___stack_chk_guard_PyErr_Occurred_PyVTKClass_Add__ZN13vtkPythonArgs8GetValueERd__Py_Dealloc__ZN13vtkPythonArgs8GetValueERPc__ZN13vtkPythonUtil13ManglePointerEPKvPKc__ZN13vtkPythonArgs13ArgCountErrorEiPKc__ZN13vtkObjectBase8IsTypeOfEPKc__ZN13vtkPythonArgs17GetArgAsVTKObjectEPKcRb__ZN13vtkPythonArgs19GetSelfFromFirstArgEP7_objectS1___ZL29PyvtkImageImport_SafeDownCastP7_objectS0___ZL41PyvtkImageImport_SetDataScalarTypeToShortP7_objectS0___ZL49PyvtkImageImport_SetDataScalarTypeToUnsignedShortP7_objectS0___ZL31PyvtkImageImport_SetWholeExtentP7_objectS0___ZL31PyvtkImageImport_GetWholeExtentP7_objectS0___ZL43PyvtkImageImport_SetDataExtentToWholeExtentP7_objectS0___ZL39PyvtkImageImport_LegacyCheckWholeExtentP7_objectS0___ZL30PyvtkImageImport_SetDataExtentP7_objectS0___ZL30PyvtkImageImport_GetDataExtentP7_objectS0___ZL39PyvtkImageImport_SetDataScalarTypeToIntP7_objectS0___ZL41PyvtkImageImport_SetDataScalarTypeToFloatP7_objectS0___ZL44PyvtkImageImport_SetNumberOfScalarComponentsP7_objectS0___ZL44PyvtkImageImport_GetNumberOfScalarComponentsP7_objectS0___ZL50PyvtkImageImport_InvokeExecuteInformationCallbacksP7_objectS0___ZL49PyvtkImageImport_InvokeUpdateInformationCallbacksP7_objectS0___ZL48PyvtkImageImport_InvokePipelineModifiedCallbacksP7_objectS0___ZL43PyvtkImageImport_InvokeExecuteDataCallbacksP7_objectS0___ZL38PyvtkImageImport_CopyImportVoidPointerP7_objectS0___ZL37PyvtkImageImport_SetImportVoidPointerP7_objectS0___ZL37PyvtkImageImport_GetImportVoidPointerP7_objectS0___ZL48PyvtkImageImport_SetDataScalarTypeToUnsignedCharP7_objectS0___ZL30PyvtkImageImport_SetDataOriginP7_objectS0___ZL30PyvtkImageImport_GetDataOriginP7_objectS0___ZL42PyvtkImageImport_GetDataScalarTypeAsStringP7_objectS0_l_switch.table._ZL42PyvtkImageImport_GetDataScalarTypeAsStringP7_objectS0___ZL31PyvtkImageImport_SetDataSpacingP7_objectS0___ZL31PyvtkImageImport_GetDataSpacingP7_objectS0___ZL25PyvtkImageImport_IsTypeOfP7_objectS0___ZL34PyvtkImageImport_SetDataScalarTypeP7_objectS0___ZL34PyvtkImageImport_GetDataScalarTypeP7_objectS0___ZL35PyvtkImageImport_SetScalarArrayNameP7_objectS0___ZL35PyvtkImageImport_GetScalarArrayNameP7_objectS0___ZL42PyvtkImageImport_SetDataScalarTypeToDoubleP7_objectS0___ZL28PyvtkImageImport_NewInstanceP7_objectS0___ZL36PyvtkImageImport_SetCallbackUserDataP7_objectS0___ZL36PyvtkImageImport_GetCallbackUserDataP7_objectS0___ZL20PyvtkImageImport_IsAP7_objectS0_