File size: 237 Bytes
3624d0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <cstdint>
#include <vector>

namespace rclane {

void normalize_bgr_to_nchw(
    const std::uint8_t* bgr,
    int source_width,
    int source_height,
    std::vector<float>& destination
);

}  // namespace rclane