I am trying to give a hint in Document AI to get table only in specific area. but it is not working.
TableBoundHint tableBoundHints = TableBoundHint.newBuilder()
.setBoundingBox(BoundingPoly.newBuilder()
// top left
.addNormalizedVertices(NormalizedVertex.newBuilder().setX(0).setX(0).build())
// top right
.addNormalizedVertices(NormalizedVertex.newBuilder().setX(1).setX(0).build())
// bottom right
.addNormalizedVertices(NormalizedVertex.newBuilder().setX(1).setX(0.25f).build())
// bottom left
.addNormalizedVertices(NormalizedVertex.newBuilder().setX(0).setX(0.25f).build()).build())
.setPageNumber(1)
.build();
Am I doing it wrong or since it is in beta phase so it is not working?