detect

Collect detections from all the sensors in tracking scenario

Description

detections = detect(sc) reports the detections from all sensors mounted on every platform in the tracking scenario, sc.

Tip

Use this syntax only when none of the sensors requires knowledge of the signals present in the scenario. For example, the HasInterference property of monostaticRadarSensor is set to false.

detections = detect(sc,signals) reports the detections from all sensors when at least one sensor requires the knowledge of signals in the scenario. For example, when a radarSensor is operating in an ESM mode.

detections = detect(sc,signals,configs) reports the detections from all sensors when at least one sensor also requires the knowledge of emitter configurations in the scenario. For example, when a radarSensor is configured as a monostatic radar.

[detections,sensorConfigs] = detect(___) additionally returns the configurations of each sensor at the detection time.

example

[detections,sensorConfigs,configIDS] = detect(___) additionally returns all platform IDs corresponding to the sensor configurations, sensorConfigs.

Examples

collapse all

Create a tracking scenario.

s = rng(0); % For repeatable result
ts = trackingScenario('UpdateRate',1);

Create the first platform and mount one emitter and one sensor on it.

plat1 = platform(ts);
plat1.Trajectory.Position = [0,0,0];
emitter1 = radarEmitter(1,'UpdateRate',1);
sensor1 = radarSensor(1,'DetectionMode','Monostatic','EmitterIndex',1,'RangeResolution',1);
plat1.Emitters = emitter1;
plat1.Sensors = sensor1;

Create the second platform and mount one emitter and one sensor on it.

plat2 = platform(ts);
plat2.Trajectory.Position = [100,0,0];
emitter2 = radarEmitter(2,'UpdateRate',1);
sensor2 = radarSensor(2,'DetectionMode','Monostatic','EmitterIndex',2,'RangeResolution',1);
plat2.Emitters = emitter2;
plat2.Sensors = sensor2;

Advance the tracking scenario, transmit and propagate emissions, and collect signals using the detect function.

advance(ts);
[emtx,emitterConfs,emitterConfPIDs] = emit(ts); % Transmitted emissions
emprop = propagate(ts,emtx,'HasOcclusion',true); % Propagate emissions
[dets,sensorConfs,sensorConfPIDs] = detect(ts,emprop,emitterConfs);

Display the detection results: Sensor 1 on platform 1 detected platform 2.

disp(dets{1})
  objectDetection with properties:

                     Time: 1
              Measurement: [3x1 double]
         MeasurementNoise: [3x3 double]
              SensorIndex: 1
            ObjectClassID: 0
    MeasurementParameters: [1x1 struct]
         ObjectAttributes: {[1x1 struct]}
sensor = dets{1}.SensorIndex
sensor = 1
detectedPlatform = dets{1}.ObjectAttributes{1}.TargetIndex
detectedPlatform = 2
rng(s) % Return the random number generator to its previous state

Input Arguments

collapse all

Tracking scenario, specified as a trackingScenario object.

Signal emissions, specified as a cell array of signal emission objects, such as radarEmission and sonarEmission.

Emitter configurations, specified as an array of emitter configuration structures. The fields of each structure are:

FieldDescription
EmitterIndex

Unique emitter index, returned as a positive integer.

IsValidTime

Valid emission time, returned as 0 or 1. IsValidTime is 0 when emitter updates are requested at times that are between update intervals specified by the UpdateInterval property.

IsScanDone

Whether the emitter has completed a scan, returned as true or false.

FieldOfView

Field of view of the emitter, returned as a two-element vector [azimuth; elevation] in degrees.

MeasurementParameters

Emitter measurement parameters, returned as an array of structures containing the coordinate frame transforms needed to transform positions and velocities in the top-level frame to the current emitter frame.

Output Arguments

collapse all

Detections, returned as a cell array of objectDetection objects.

Sensor configurations, return as an array of sensor configuration structures. The fields of each structure are:

FieldDescription
SensorIndex

Unique sensor index, returned as a positive integer.

IsValidTime

Valid detection time, returned as true or false. IsValidTime is false when detection updates are requested between update intervals specified by the update rate.

IsScanDone

IsScanDone is true when the sensor has completed a scan.

FieldOfView

Field of view of the sensor, returned as a 2-by-1 vector of positive real values, [azfov;elfov]. azfov and elfov represent the field of view in azimuth and elevation, respectively.

MeasurementParameters

Sensor measurement parameters, returned as an array of structures containing the coordinate frame transforms needed to transform positions and velocities in the top-level frame to the current sensor frame.

Platform IDs for sensor configurations in the sensorConfigs output, returned as an array of positive integers.

Introduced in R2020a