| 11 | } |
| 12 | |
| 13 | void ImageProcessor::normalize(cv::Mat& image) |
| 14 | { |
| 15 | cv::divide(image, std_scaling, image); |
| 16 | cv::subtract(image, mean_scaling, image); |
| 17 | } |
| 18 | |
| 19 | |
| 20 | void ImageProcessor::cvt_format(float* from, float* dest, int dim) |
no outgoing calls
no test coverage detected