For now (v0.2), if the created shape might be a polygon (shapes with more than 4 vertices), layoutparser will raise NotSupportedShapeError. It is expected to be fixed in the future versions. See :ref:`shape_operations:problems-related-to-the-quadrilateral-class`.
| 13 | # limitations under the License. |
| 14 | |
| 15 | class NotSupportedShapeError(Exception): |
| 16 | """For now (v0.2), if the created shape might be a polygon (shapes with more than 4 vertices), |
| 17 | layoutparser will raise NotSupportedShapeError. It is expected to be fixed in the future versions. |
| 18 | See |
| 19 | :ref:`shape_operations:problems-related-to-the-quadrilateral-class`. |
| 20 | """ |
| 21 | |
| 22 | |
| 23 | class InvalidShapeError(Exception): |