Create transform layer for YOLO v2 object detection network
The yolov2TransformLayer
function creates a
YOLOv2TransformLayer
object, which represents the transform layer for you
look only 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.
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'.
[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.
spaceToDepthLayer
| trainYOLOv2ObjectDetector
| yolov2Layers
| yolov2ObjectDetector
| yolov2OutputLayer