img_util.h 345 Bytes
#ifndef __HELPERS_IMG_TUIL_H__
#define __HELPERS_IMG_TUIL_H__


#include "../common/sy_common.h"
#include <vector>

namespace common {

bool isInPolygon(const sy_point* point_array, int point_count, const sy_point& center);

void save_result(int height, int width, sy_point* point_array, int point_count, std::vector<sy_point> vec_pt);
}

#endif