|
| 1 | +importnumpy |
| 2 | + |
| 3 | +BESSEL:_InterpolationType |
| 4 | +BICUBIC:_InterpolationType |
| 5 | +BILINEAR:_InterpolationType |
| 6 | +BLACKMAN:_InterpolationType |
| 7 | +CATROM:_InterpolationType |
| 8 | +GAUSSIAN:_InterpolationType |
| 9 | +HAMMING:_InterpolationType |
| 10 | +HANNING:_InterpolationType |
| 11 | +HERMITE:_InterpolationType |
| 12 | +KAISER:_InterpolationType |
| 13 | +LANCZOS:_InterpolationType |
| 14 | +MITCHELL:_InterpolationType |
| 15 | +NEAREST:_InterpolationType |
| 16 | +QUADRIC:_InterpolationType |
| 17 | +SINC:_InterpolationType |
| 18 | +SPLINE16:_InterpolationType |
| 19 | +SPLINE36:_InterpolationType |
| 20 | + |
| 21 | +class_InterpolationType: |
| 22 | +def__init__(self,value:int)->None: ... |
| 23 | +def__eq__(self,other:object)->bool: ... |
| 24 | +def__hash__(self)->int: ... |
| 25 | +def__index__(self)->int: ... |
| 26 | +def__int__(self)->int: ... |
| 27 | +def__ne__(self,other:object)->bool: ... |
| 28 | +@property |
| 29 | +defname(self)->str: ... |
| 30 | +@property |
| 31 | +defvalue(self)->int: ... |
| 32 | + |
| 33 | +defresample(input_array:numpy.ndarray,output_array:numpy.ndarray,transform:object,interpolation:_InterpolationType= ...,resample:bool= ...,alpha:float= ...,norm:bool= ...,radius:float= ...)->None: ... |