RCLane_2D_Detection / cpp /include /preprocess.hpp
huyluongngoc's picture
feat(RCLane): switch to C++ for runtime modeling
3624d0b
Raw
History Blame Contribute Delete
237 Bytes
#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