21 lines
523 B
Plaintext
21 lines
523 B
Plaintext
flowchart LR
|
|
OCR["Texterkennung\n(Tesseract)"]
|
|
Pre -->|Bilddaten| OCR
|
|
OCR -->|Schlagworte| Post
|
|
Post -->|Schlagworte| Lookup
|
|
Lookup -->|Schlagworte| Bericht
|
|
|
|
subgraph Pre[Vorverarbeitung]
|
|
direction TB
|
|
Pre1[Skalierung] --> Pre2
|
|
Pre2[" ... "] --> Pre3
|
|
Pre3[Binarisierung]
|
|
end
|
|
|
|
subgraph Post[Nachbearbeitung]
|
|
direction TB
|
|
Post1[Normalisierung] --> Post2
|
|
Post2[" ... "] --> Post3
|
|
Post3[RegEx-Filterung]
|
|
end
|