I am try to use convexHull to set the sequence of my points. But the result is just wrong.
//image_points_queue.push_back(original_image_points);
vector<cv::Point2f> image_points = {
{ 585, 543 },
{ 643, 749 },
{ 767, 501 },
};
convexHull(image_points, image_points, false);
image_points comes to be "767, 501", "643, 749", "767, 501". I don't have any idea about it . Please help.