31 lines
899 B
Text
31 lines
899 B
Text
flowchart TB
|
|
subgraph Preproc["Parte 1, Preparazione"]
|
|
IC["ImageCatalog.exe"]
|
|
WC["WebCatalog"]
|
|
|
|
IC --> IC_resize["Ridimensionamento e testo"]
|
|
WC --> WC_resize["Ridimensionamento e testo"]
|
|
|
|
IC_resize --> IC_ocr["Riconoscimento Pettorali"]
|
|
WC_resize --> WC_ocr["Riconoscimento Pettorali"]
|
|
|
|
IC_ocr --> IC_index["Indicizzazione volti"]
|
|
IC_index --> InvManual["Invio manuale"]
|
|
|
|
WC_ocr --> WC_index["Indicizzazione volti"]
|
|
WC_index --> InvAuto["Invio automatico"]
|
|
end
|
|
|
|
|
|
|
|
InvManual --> Site["RegalamiUnSorriso.com"]
|
|
InvAuto --> Site
|
|
|
|
subgraph Present["Parte 2, Presentazione"]
|
|
Site --> Search["Ricerca"]
|
|
end
|
|
|
|
%% styling for the indexing nodes (softer color + readable text on dark background)
|
|
style IC_index fill:#1967d2,stroke:#082a4a,stroke-width:2px,color:#ffffff
|
|
style WC_index fill:#1967d2,stroke:#082a4a,stroke-width:2px,color:#ffffff
|
|
|