0

For a complete floor plan analysis, text segmentation from the other graphic image is the crucial part. I have tried tesseract but it isn't that great, its because the text is in different orientations. I want the text to be separated as a layer with same dimensions as the floor plan image? Any suggestions how to do this?

thanks in advance....... :)

[1]: https://i.stack.imgur.com/2IAiT.jpg

Jyo
  • 5
  • 4

1 Answers1

0

As you ask without code, doing the same for this answer. A possible strategy would be to:

  1. Use e.g. opencv to identify where text is.
    • In the example you give, you see that text is either within a room or on the outside as measurement.
    • Also, it are by far the thickest lines
  2. Crop these regions
  3. Turn the regions if height > width
  4. Use Tesseract
Roelant
  • 4,508
  • 1
  • 32
  • 62