yolov2TransformLayer
Create transform layer for YOLO v2 object detection network
Description
The yolov2TransformLayer
function creates a
YOLOv2TransformLayer
object, which represents the transform layer for you
only look once version 2 (YOLO v2) object detection network. The transform layer in YOLO v2
object detection network improves the stability of the network by constraining the location
predictions. The transform layer extracts activations of the last convolutional layer and
transforms the bounding box predictions to fall within the bounds of the ground
truth.
Creation
Syntax
Description
creates the transform layer for YOLO v2 object detection network.layer
= yolov2TransformLayer(numAnchorBoxes
)
sets the layer
= yolov2TransformLayer(numAnchorBoxes
,Name,Value
)Name
property using a name-value pair. Enclose the property
name in single quotes. For example,
yolov2TransformLayer('Name','yolo_Transform')
creates a transform
layer with the name 'yolo_Transform'.
Input Arguments
Properties
Examples
Algorithms
References
[1] Joseph. R, S. K. Divvala, R. B. Girshick, and F. Ali. "You Only Look Once: Unified, Real-Time Object Detection." In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 779–788. Las Vegas, NV: CVPR, 2016.
[2] Joseph. R and F. Ali. "YOLO 9000: Better, Faster, Stronger." In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 6517–6525. Honolulu, HI: CVPR, 2017.
Extended Capabilities
Version History
Introduced in R2019aSee Also
yolov2ObjectDetector
| trainYOLOv2ObjectDetector
| spaceToDepthLayer
Topics
- Create Custom YOLO v2 Object Detection Network
- Object Detection Using YOLO v2 Deep Learning
- Estimate Anchor Boxes From Training Data
- Code Generation for Object Detection by Using YOLO v2
- Get Started with Object Detection Using Deep Learning
- Choose an Object Detector
- Getting Started with YOLO v2
- Anchor Boxes for Object Detection