cars.orchestrator.registry.unseen_registry ========================================== .. py:module:: cars.orchestrator.registry.unseen_registry .. autoapi-nested-parse:: This module contains the unseen registry class Classes ------- .. autoapisummary:: cars.orchestrator.registry.unseen_registry.CarsDatasetRegistryUnseen Module Contents --------------- .. py:class:: CarsDatasetRegistryUnseen(id_generator) Bases: :py:obj:`cars.orchestrator.registry.abstract_registry.AbstractCarsDatasetRegistry` CarsDatasetRegistryUnseen This registry manages the unseen CarsDataset, that might be needed to get infos .. py:attribute:: registered_cars_datasets_unseen :value: [] .. py:method:: get_cars_ds(future_result) Get a list of registered CarsDataset :param obj: object to get cars dataset from :return corresponding CarsDataset :rtype: CarsDataset .. py:method:: cars_dataset_in_registry(cars_ds) Check if a CarsDataset is already registered, return id if exists :param cars_ds: cars dataset :type cars_ds: CarsDataset :return : True if in registry, if of cars dataset :rtype : Tuple(bool, int) .. py:method:: add_cars_ds_to_unseen(cars_ds) Add cars dataset to unseen registry, and get corresponding id :param cars_ds: cars dataset :type cars_ds: CarsDataset :return : id :rtype : int .. py:method:: get_cars_datasets_list() Get a list of registered CarsDataset :return list of CarsDataset :rtype: list(CarsDataset)