Source code for nabu.stitching.stitcher.z_stitcher
from nabu.stitching.stitcher.pre_processing import PreProcessingStitching
from nabu.stitching.stitcher.post_processing import PostProcessingStitching
from .dumper import PreProcessingStitchingDumper, PostProcessingStitchingDumperNoDD, PostProcessingStitchingDumper
from nabu.stitching.stitcher.single_axis import _SingleAxisMetaClass
[docs]
class PreProcessingZStitcher(
PreProcessingStitching,
dumper_cls=PreProcessingStitchingDumper,
axis=0,
):
[docs]
class PostProcessingZStitcher(
PostProcessingStitching,
metaclass=_SingleAxisMetaClass,
dumper_cls=PostProcessingStitchingDumper,
axis=0,
):
@property
def serie_label(self) -> str:
return "z-serie"
[docs]
class PostProcessingZStitcherNoDD(
PostProcessingStitching,
metaclass=_SingleAxisMetaClass,
dumper_cls=PostProcessingStitchingDumperNoDD,
axis=0,
):
@property
def serie_label(self) -> str:
return "z-serie"