### Flowchart of week43 ####
digraph Week43 {
# General settings
node [fontname = "Handlee"];
bgcolor=transparent;
# Blocks/clusters
subgraph cluster_1 {
color=transparent;
step3 [ label = "Post processing", shape=block];
step2 [ label = "Segmentation", shape=block];
step1 [ label = "Open data", shape=block];
step6 [ label = "Center line\n +\n Straighten reformat", color=blue];
step5 [ label = "Isolation of one\n part for study", color=blue];
step4 [ label = "Visualizator/\n Python", color=blue];
{
rank=same;
step1; step2; step3;
}
}
# Blocks/clusters
step1 -> step2 -> step3;
step1 -> step2;
step2 -> step3;
step4 -> step1;
step5 -> step2;
step6 -> step3;
}