12345678910111213141516171819 |
- //
- // Created by 阳坤 on 2022/2/23.
- //
- #ifndef JNI_IMAGE_BLUR_DETECTION_H
- #define JNI_IMAGE_BLUR_DETECTION_H
- #include "opencv2/opencv.hpp"
- #include "opencv2/imgcodecs.hpp"
- #include "vector"
- int image_blur_detection(const char *filename);
- int doDetection(cv::Mat mat);
- int bytes_blur_detection(uint8_t *data,int len);
- #endif //JNI_IMAGE_BLUR_DETECTION_H
|