""" ArGaze is divided in submodules dedicated to various specifics features. """ __all__ = ['ArUcoMarkers', 'AreaOfInterest', 'ArFeatures', 'GazeFeatures', 'GazeAnalysis', 'PupilFeatures', 'PupilAnalysis', 'DataFeatures', 'utils'] def load(filepath: str) -> any: """ Load object from json file. !!! note The directory where json file is will be used as global working directory. Parameters: filepath: path to json file """ from argaze import DataFeatures return DataFeatures.from_json(filepath)