]> AND Private Git Repository - canny.git/blob - schema2.dot
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
ajout d'experiments
[canny.git] / schema2.dot
1 digraph start_up { 
2         node [style = rounded, shape = rect] SI [label="Stego Image"]
3         node [style = "", shape = diamond] cond [label="Size of y\n enough"]; 
4         node [style = rounded, shape = rect] key 
5         node [style = rounded, shape = rect] start end;
6         node [style = rounded, shape = rect] PI [label="Parameter\nInstantiation"]               
7         node [style = rounded, shape = rect] STC [label="m = STCr(y,H)"]                 
8         node [style = rounded, shape = rect] ED [label="(y,H)= LSB(7 bits\nEdge Detection)"]  
9         node [style = rounded, shape = rect] decrypt [label="message=decryption(m)"]             
10
11
12
13         start -> SI
14         start -> PI
15         PI -> ED 
16         start -> key 
17
18         SI -> ED
19         ED -> cond 
20         cond -> STC [label="Yes"]
21         cond -> PI [label="No"]
22         
23         STC -> decrypt
24         key -> decrypt
25         decrypt -> end
26         
27                 
28         
29          }