Difference between revisions of "PlayChessWithAWebCam/DetectState"

From BITPlan Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
= Second attempt =
 
<graphviz>
 
<graphviz>
   digraph detection {
+
   digraph detection2 {
 +
    calibrating -> preMove [ label="" ]
 +
    preMove -> inMove [ label="" ]
 +
    inMove -> moveDetected [ label="" ]
 +
  }
 +
</graphviz>
 +
= First attempt =
 +
<graphviz>
 +
  digraph detection1 {
 
     calibrating -> valid [ label="more than calibrationWindow value" ]
 
     calibrating -> valid [ label="more than calibrationWindow value" ]
 
     valid -> validStable [ label="more than validWindow valid values" ]
 
     valid -> validStable [ label="more than validWindow valid values" ]

Revision as of 09:58, 17 December 2019

Second attempt

First attempt