Detect objects in monocular camera using SSD deep learning detector
The ssdObjectDetectorMonoCamera
detects objects from an image, using a single
shot detector (SSD) object detector. To detect objects in an image, pass the trained detector
to the detect
function.
Create a ssdObjectDetector
object by calling the trainSSDObjectDetector
function with training data (requires Deep Learning Toolbox™).
detector = trainSSDObjectDetector(trainingData,____);
Create a monoCamera
object to model the monocular
camera sensor.
sensor = monoCamera(____);
Create a ssdObjectDetectorMonoCamera
object by passing the detector and sensor as
inputs to the configureDetectorMonoCamera
function. The
configured detector inherits property values from the original detector.
configuredDetector = configureDetectorMonoCamera(detector,sensor,____);
detect | Detect objects using SSD object detector configured for monocular camera |