RecursiveLambda
- class hybrid_learning.datasets.transforms.image_transforms.RecursiveLambda(fun)[source]
Bases:
ImageTransform
Generic lambda transformation that applies the given function with the standard
ImageTransform
recursion. The same caveats hold as forLambda
.Public Data Attributes:
Settings to reproduce the instance.
Inherited from : py: class:Transform
IDENTITY_CLASS
The identity class or classes for composition / addition.
Settings to reproduce the instance.
Public Methods:
apply_to
(img)Application of the lambda.
Inherited from : py: class:ImageTransform
apply_to
(img)Application of the lambda.
Inherited from : py: class:Transform
apply_to
(img)Application of the lambda.
Special Methods:
__repr__
()Return repr(self).
__init__
(fun)Init.
Inherited from : py: class:ImageTransform
__call__
(img)Application of transformation.
Inherited from : py: class:Transform
__repr__
()Return repr(self).
__eq__
(other)Return self==value.
__copy__
()Return a shallow copy of self using settings.
__add__
(other)Return a flat composition of
self
withother
.__radd__
(other)Return a flat composition of
other
andself
.__call__
(img)Application of transformation.