Source code for stonesoup.sensor.passive

# -*- coding: utf-8 -*-
from typing import Set, Union

import numpy as np

from ..base import Property
from ..models.measurement.nonlinear import CartesianToElevationBearing
from ..sensor.sensor import Sensor
from ..types.array import CovarianceMatrix
from ..types.detection import TrueDetection
from ..types.groundtruth import GroundTruthState


[docs]class PassiveElevationBearing(Sensor): """A simple passive sensor that generates measurements of targets, using a :class:`~.CartesianToElevationBearing` model, relative to its position. Note ---- The current implementation of this class assumes a 3D Cartesian plane. """ ndim_state: int = Property( doc="Number of state dimensions. This is utilised by (and follows in\ format) the underlying :class:`~.CartesianToElevationBearing`\ model") mapping: np.ndarray = Property( doc="Mapping between the targets state space and the sensors\ measurement capability") noise_covar: CovarianceMatrix = Property( doc="The sensor noise covariance matrix. This is utilised by\ (and follow in format) the underlying \ :class:`~.CartesianToElevationBearing` model")
[docs] def measure(self, ground_truths: Set[GroundTruthState], noise: Union[np.ndarray, bool] = True, **kwargs) -> Set[TrueDetection]: """Generate a measurement for a given state Parameters ---------- ground_truths : Set[:class:`~.GroundTruthState`] A set of :class:`~.GroundTruthState` noise: :class:`numpy.ndarray` or bool An externally generated random process noise sample (the default is `True`, in which case :meth:`~.Model.rvs` is used if 'False', no noise will be added) Returns ------- Set[:class:`~.TrueDetection`] A set of measurements generated from the given states. The timestamps of the measurements are set equal to that of the corresponding states that they were calculated from. Each measurement stores the ground truth path that it was produced from. """ measurement_model = CartesianToElevationBearing( ndim_state=self.ndim_state, mapping=self.mapping, noise_covar=self.noise_covar, translation_offset=self.position, rotation_offset=self.orientation) detections = set() for truth in ground_truths: measurement_vector = measurement_model.function(truth, noise=noise, **kwargs) detection = TrueDetection(measurement_vector, measurement_model=measurement_model, timestamp=truth.timestamp, groundtruth_path=truth) detections.add(detection) return detections