initial
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
__all__: list[str] = []
|
||||
|
||||
import cv2
|
||||
import cv2.typing
|
||||
import typing as _typing
|
||||
|
||||
|
||||
# Classes
|
||||
class HistogramPhaseUnwrapping(PhaseUnwrapping):
|
||||
# Classes
|
||||
class Params:
|
||||
width: int
|
||||
height: int
|
||||
histThresh: float
|
||||
nbrOfSmallBins: int
|
||||
nbrOfLargeBins: int
|
||||
|
||||
# Functions
|
||||
def __init__(self) -> None: ...
|
||||
|
||||
|
||||
|
||||
# Functions
|
||||
@classmethod
|
||||
def create(cls, parameters: HistogramPhaseUnwrapping.Params = ...) -> HistogramPhaseUnwrapping: ...
|
||||
|
||||
@_typing.overload
|
||||
def getInverseReliabilityMap(self, reliabilityMap: cv2.typing.MatLike | None = ...) -> cv2.typing.MatLike: ...
|
||||
@_typing.overload
|
||||
def getInverseReliabilityMap(self, reliabilityMap: cv2.UMat | None = ...) -> cv2.UMat: ...
|
||||
|
||||
|
||||
class PhaseUnwrapping(cv2.Algorithm):
|
||||
# Functions
|
||||
@_typing.overload
|
||||
def unwrapPhaseMap(self, wrappedPhaseMap: cv2.typing.MatLike, unwrappedPhaseMap: cv2.typing.MatLike | None = ..., shadowMask: cv2.typing.MatLike | None = ...) -> cv2.typing.MatLike: ...
|
||||
@_typing.overload
|
||||
def unwrapPhaseMap(self, wrappedPhaseMap: cv2.UMat, unwrappedPhaseMap: cv2.UMat | None = ..., shadowMask: cv2.UMat | None = ...) -> cv2.UMat: ...
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user