Document database¶
Document templates are files containing information about a specific document type, and needed to detect and read it. Our documents reference file database can evolve on demand, independently from SDK versions.
Important
Document template files¶
Document template files have the .id3dr
extension. For modularity reasons, template files are separated by module and models. It increases the number of files, but you can load only those you need.
You must copy those files into your application package, and specify their location in your application’s source code. If you wish to reduce the size of your application, we recommend copying only the necessary files.
Reference files are named the following way : <package_name>_<model>_X.X.X.V.id3dr
, with :
The
<package_name>
is a unique string used to identify this document, or the group of documents in the SDK.<model>
: SDK AI Model which needs this document template.X.X.X
is the corresponding SDK version used to generate themV
is an independent document template file version. Please always use the latest for each template.
Warning
Note
_front
and _back
. The 2 sides are treated like 2 different documents in the SDK, and you should use the full name to identify them in the SDK (for example: in DocumentDetector.detectDocumentByName Method)Example¶

Loading/unloading the document database¶
It is recommended to load the document templates on application startup. The DocumentLibrary Class provides methods for loading and unloading document templates in memory.
When loading the template, one must give the full path of the .id3dr file, with the extension.
When unloading, one can give either the package name (unloading every documents inside this package), or unload separately the documents templates with their full name.
# Load the package corresponding to French ID Card
DocumentLibrary.load_document_template("FRA_BO_03001_detector_2A_2.2.0.0.id3dr")
# Print loaded documents : `FRA_BO_03001_front` and `FRA_BO_03001_back`
for document_name in DocumentLibrary.get_loaded_document_template():
print(document_name)
# Unload either package or individual
DocumentLibrary.unload_document_template("FRA_BO_03001")
# ----- OR ----
DocumentLibrary.unload_document_template("FRA_BO_03001_back")
DocumentLibrary.unload_document_template("FRA_BO_03001_front")