TableRecognitionSettings
Settings for TableRecognition. Values fall back through three levels: document → SDK → built-in default. Writes target the document only when set on a document’s settings, otherwise the SDK globally when set on SdkSettings.
Tags: Vision, Advanced
from nutrient_sdk import TableRecognitionSettingsConstruction
TableRecognitionSettings is accessed through a Document instance for per-document overrides, or via SdkSettings for SDK-wide defaults.
# Per-document overridewith Document.open("input.pdf") as doc: settings = doc.settings.table_recognition_settings settings.some_field = new_value # mutate fields directly
# SDK-wide default (applies to all documents)SdkSettings.table_recognition_settings.some_field = new_valueSettings are configured by writing to fields on the returned object. The settings property itself cannot be reassigned — doc.settings.table_recognition_settings = other_settings is rejected.
Properties
target_size
@propertydef target_size(self) -> int
@target_size.setterdef target_size(self, value: int) -> NoneTarget size for image preprocessing (height and width). Default is 448x448 as specified in the TableFormer model.
Type: int
Default: 448