# ReorgYolo Layer {#openvino_docs_ops_detection_ReorgYolo_1} **Versioned name**: *ReorgYolo-1* **Category**: *Object detection* **Short description**: *ReorgYolo* reorganizes input tensor taking into account strides. **Detailed description**: [Reference](https://arxiv.org/pdf/1612.08242.pdf) **Attributes** * *stride* * **Description**: *stride* is the distance between cut throws in output blobs. * **Range of values**: positive integer * **Type**: `int` * **Required**: *yes* **Inputs**: * **1**: 4D input tensor of any type and shape `[N, C, H, W]`. `H` and `W` should be divisible by `stride` and `C >= (stride*stride)`. **Required.** **Outputs**: * **1**: 4D output tensor of the same type as input tensor and shape `[N, C*stride*stride, H/stride, W/stride]`. **Example** ```xml 1 64 26 26 1 256 13 13 ```