OCR-D framework - file format APIs and schemas
Project description
ocrd_models
OCR-D framework - file format APIs and schemas
See https://github.com/OCR-D/core
Adding user methods to the generated PAGE API
Let's say you want to add a method get_FirstTextRegion
on the pc:Page element:
- Create a file
ocrd_models/ocrd_page_user_methods/get_FirstTextRegion.py
def get_FirstTextRegion(self):
return self.get_TextRegion[0]
- Edit
ocrd_models/ocrd_page_user_methods.py
and append to theMETHOD_SPECS
list:
METHOD_SPECS = (
# ...
_add_method(r'^PageType$', 'get_FirstTextRegion')
# ...
)
If the filename (sans the .py
extension) does not match the method_name, you
can provide an additional file_name
attribute to _add_method
:
METHOD_SPECS = (
# ...
_add_method(r'^PageType$', 'exportChildren', 'exportChildren_PageType')
# ...
)
Would add the method exportChildren
from a file exportChildren_PageType.py
.
NOTE The method name in the file must match the method name passed to
_add_method
. This is not checked automatically, so double-check manually!
- Regenerate the PAGE API:
make generate-page
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ocrd_models-2.37.0.tar.gz
(97.7 kB
view hashes)
Built Distribution
ocrd_models-2.37.0-py3-none-any.whl
(102.2 kB
view hashes)
Close
Hashes for ocrd_models-2.37.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d663f277848b2c293580d462ef654feeda33a1fe52d5b8d7a50b25f4911c442 |
|
MD5 | fe44dd4438264230b06c71246a5853a5 |
|
BLAKE2b-256 | 26b5f8ac868661962c8e65a51c5b1d686cad8bfdb4137b4a2e776b2eae0c221d |