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
(Computer Vision Toolbox)
function.
Create a ssdObjectDetector
(Computer Vision Toolbox) object by calling the trainSSDObjectDetector
(Computer Vision Toolbox) 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 (Computer Vision Toolbox) | Detect objects using SSD multibox object detector |
configureDetectorMonoCamera
| trainSSDObjectDetector
(Computer Vision Toolbox)monoCamera
| ssdObjectDetector
(Computer Vision Toolbox)