FaceDetModule.h 399 Bytes
#pragma once

#include "face_detect.h"
#include "sy_errorinfo.h"
#include "sy_common.h"

class face_det_module
{
private:
	void* m_face_det_handle;
	float face_score;

public:
	int face_det_module_init(int gpuid, char* auth_license);

	int face_det_module_process(sy_img* img, int batchsize, fd_result *face_det_result, sy_point* original_size);

	void face_det_module_release();
};