Commit 840bb5bc authored by Davis King's avatar Davis King

Updated to work with new extract_image_4points() interface.

parent 91ae3de1
...@@ -554,14 +554,14 @@ numpy_image<T> py_extract_image_4points ( ...@@ -554,14 +554,14 @@ numpy_image<T> py_extract_image_4points (
set_image_size(out, rows, columns); set_image_size(out, rows, columns);
try try
{ {
extract_image_4points(img, out, python_list_to_vector<dpoint>(corners)); extract_image_4points(img, out, python_list_to_array<dpoint,4>(corners));
return out; return out;
} }
catch (py::cast_error&){} catch (py::cast_error&){}
try try
{ {
extract_image_4points(img, out, python_list_to_vector<line>(corners)); extract_image_4points(img, out, python_list_to_array<line,4>(corners));
return out; return out;
} }
catch(py::cast_error&) catch(py::cast_error&)
...@@ -657,6 +657,7 @@ ensures \n\ ...@@ -657,6 +657,7 @@ ensures \n\
- PTS is just line with some elements removed. - PTS is just line with some elements removed.
!*/ !*/
py::register_exception<no_convex_quadrilateral>(m, "no_convex_quadrilateral");
m.def("extract_image_4points", &py_extract_image_4points<uint8_t>, py::arg("img"), py::arg("corners"), py::arg("rows"), py::arg("columns")); m.def("extract_image_4points", &py_extract_image_4points<uint8_t>, py::arg("img"), py::arg("corners"), py::arg("rows"), py::arg("columns"));
m.def("extract_image_4points", &py_extract_image_4points<uint16_t>, py::arg("img"), py::arg("corners"), py::arg("rows"), py::arg("columns")); m.def("extract_image_4points", &py_extract_image_4points<uint16_t>, py::arg("img"), py::arg("corners"), py::arg("rows"), py::arg("columns"));
...@@ -689,12 +690,12 @@ ensures \n\ ...@@ -689,12 +690,12 @@ ensures \n\
left corner to upper left corner, upper right corner to upper right \n\ left corner to upper left corner, upper right corner to upper right \n\
corner, etc.). \n\ corner, etc.). \n\
- else \n\ - else \n\
- This routine simply finds the 4 intersecting points of the given lines \n\ - This routine finds the 4 intersecting points of the given lines which \n\
and uses them as described above to extract an image. i.e. It just then \n\ form a convex quadrilateral and uses them as described above to extract \n\
calls: extract_image_4points(img, intersections_between_lines, rows, columns). \n\ an image. i.e. It just then calls: extract_image_4points(img, \n\
- Since 4 lines might intersect at more than 4 locations, we select the \n\ intersections_between_lines, rows, columns). \n\
intersections that give a quadrilateral with opposing sides that are as \n\ - If no convex quadrilateral can be made from the given lines then this \n\
parallel as possible." routine throws no_convex_quadrilateral."
/*! /*!
requires requires
- corners is a list of dpoint or line objects. - corners is a list of dpoint or line objects.
...@@ -716,12 +717,12 @@ ensures \n\ ...@@ -716,12 +717,12 @@ ensures \n\
left corner to upper left corner, upper right corner to upper right left corner to upper left corner, upper right corner to upper right
corner, etc.). corner, etc.).
- else - else
- This routine simply finds the 4 intersecting points of the given lines - This routine finds the 4 intersecting points of the given lines which
and uses them as described above to extract an image. i.e. It just then form a convex quadrilateral and uses them as described above to extract
calls: extract_image_4points(img, intersections_between_lines, rows, columns). an image. i.e. It just then calls: extract_image_4points(img,
- Since 4 lines might intersect at more than 4 locations, we select the intersections_between_lines, rows, columns).
intersections that give a quadrilateral with opposing sides that are as - If no convex quadrilateral can be made from the given lines then this
parallel as possible. routine throws no_convex_quadrilateral.
!*/ !*/
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment