Created
November 6, 2016 19:45
-
-
Save nigelkerr/d1a0202924edad935fb8bd1094e17b1a to your computer and use it in GitHub Desktop.
css to add to a hocr file to make it easier to see the recognized regions.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ocr_page, .ocr_carea, .ocr_par, .ocr_line, .ocrx_word { | |
margin: 0px; | |
padding: 0px; | |
} | |
.ocr_page { | |
border: thin green dotted; | |
} | |
.ocr_carea { | |
border: thin red dotted; | |
} | |
.ocr_par { | |
border: thin blue dotted; | |
} | |
.ocr_line { | |
border: thin yellow dotted; | |
} | |
.ocrx_word { | |
border: thin purple dotted; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment