preprocess.h 371 字节
Newer Older
W
WenmuZhou 已提交
1 2 3 4 5 6 7 8 9 10 11 12
#pragma once

#include "common.h"
#include <jni.h>
#include <opencv2/opencv.hpp>
cv::Mat bitmap_to_cv_mat(JNIEnv *env, jobject bitmap);

cv::Mat resize_img(const cv::Mat &img, int height, int width);

void neon_mean_scale(const float *din, float *dout, int size,
                     const std::vector<float> &mean,
                     const std::vector<float> &scale);