Files
cell/source/cv.hpp
2024-12-05 12:00:12 -06:00

16 lines
217 B
C++

#ifndef CV_H
#define CV_H
#include <SDL3/SDL.h>
#ifdef __cplusplus
extern "C" {
#endif
SDL_FRect *detectImageInWebcam(SDL_Surface *webcam, SDL_Surface *img, double threshold);
#ifdef __cplusplus
}
#endif
#endif