Skip to content

Compare panorama

ComparePanoramaSetting #

ComparePanoramaSetting(value: bool = True)

Bases: RapidataSetting

Enables panorama comparison mode for compare tasks. Renders a special panoramic image viewer instead of the standard comparison view.

Parameters:

Name Type Description Default
value bool

Whether to enable panorama comparison mode. Defaults to True.

True
Source code in src/rapidata/rapidata_client/settings/compare_panorama.py
def __init__(self, value: bool = True):
    if not isinstance(value, bool):
        raise ValueError("The value must be a boolean.")

    super().__init__(key="compare_panorama", value=value)