image_blur_detection.h 362 B

12345678910111213141516171819
  1. //
  2. // Created by 阳坤 on 2022/2/23.
  3. //
  4. #ifndef JNI_IMAGE_BLUR_DETECTION_H
  5. #define JNI_IMAGE_BLUR_DETECTION_H
  6. #include "opencv2/opencv.hpp"
  7. #include "opencv2/imgcodecs.hpp"
  8. #include "vector"
  9. int image_blur_detection(const char *filename);
  10. int doDetection(cv::Mat mat);
  11. int bytes_blur_detection(uint8_t *data,int len);
  12. #endif //JNI_IMAGE_BLUR_DETECTION_H