Package net.imglib2.transform.integer
Interface BoundingBoxTransform
-
- All Known Subinterfaces:
ComponentMapping
,Mixed
,Slicing
,Translation
- All Known Implementing Classes:
AbstractMixedTransform
,AbstractShearTransform
,ComponentMappingTransform
,InverseShearTransform
,MixedTransform
,ShearTransform
,SlicingTransform
,TranslationTransform
,TranslationTransform.InverseTranslationTransform
public interface BoundingBoxTransform
Implemented by Transforms that can transform (easily) a BoundingBox in the source space to a bounding box in the target space.- Author:
- Tobias Pietzsch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BoundingBox
transform(BoundingBox boundingBox)
Return a transformed bounding box.
-
-
-
Method Detail
-
transform
BoundingBox transform(BoundingBox boundingBox)
Return a transformed bounding box. The transformation can be carried out in-place.- Parameters:
boundingBox
-- Returns:
- the transformed bounding box
-
-