PlayChessWithAWebCam/DetectState: Difference between revisions

From BITPlan Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{:PlayChessWithAWebCam/Links}}
= State transitions =
<graphviz>
<graphviz>
   digraph detection {
   digraph detection2 {
     calibrating -> valid [ label="more than calibrationWindow value" ]
     calibrating -> calibrating [ label="not stable or less than calibrationWindow times calibrating" ]
     valid -> validStable [ label="more than validWindow valid values" ]
     calibrating -> preMove [ label="stable and more than calibrationWindows times calibrating" ]
     validStable -> invalid [ label="value out of valid range" ]
     preMove -> preMove [ label="stable" ]
     invalid -> invalidStable  [ label="value out of valid ragne for more than invalidWindow values" ]
     preMove -> inMove [ label="not stable" ]
     valid -> invalid
     inMove->inMove  [ label="not stable or difference of pixelChanges>10% of peak inMove value" ]
    invalid -> valid
     inMove -> potentialMove [ label="stable and difference of pixelChanges<10% of peak inMove value" ]
     invalidStable -> valid [ label="move?" ]
   }
   }
</graphviz>
</graphviz>
= Relevant Source parts =
<source lang='python'>
class ImageChange:
...
def isStable(self):
        delta=abs(self.movingAverage.gradient())
        stable=delta<ImageChange.gradientDelta
        if stable:
            self.stableCounter+=1
        else:
            self.stableCounter=0   
        return stable 
...
class SimpleDetector:
def updateState(self,cbImageSet):
        calibrationWindow=5
       
        ic=self.imageChange
        ics=ic.changeState
        if ics==ChangeState.CALIBRATING:
            # leave calibrating when enough stable values are available
            if ic.isStable() and ic.stableCounter>=calibrationWindow:
                ic.changeState=ChangeState.PRE_MOVE
        elif ics==ChangeState.PRE_MOVE:
            if not ic.isStable():
                ic.changeState=ChangeState.IN_MOVE
                ic.minInMove=ic.pixelChanges
                ic.maxInMove=ic.pixelChanges
        elif ics==ChangeState.IN_MOVE:
            ic.maxInMove=max(ic.maxInMove,ic.pixelChanges)
            peak=ic.maxInMove-ic.minInMove
            dist=ic.pixelChanges-ic.minInMove
            if peak>0:
                relativePeak=dist/peak
                if ic.isStable():
                    if relativePeak<0.1:
                        self.onMoveDetected(cbImageSet)
</source>

Latest revision as of 11:10, 18 December 2019

Click here to comment see PlayChessWithAWebCam

State transitions

Relevant Source parts

class ImageChange:
...
def isStable(self):
        delta=abs(self.movingAverage.gradient())
        stable=delta<ImageChange.gradientDelta
        if stable:
            self.stableCounter+=1
        else:
            self.stableCounter=0    
        return stable  
...
class SimpleDetector:
def updateState(self,cbImageSet):
        calibrationWindow=5
        
        ic=self.imageChange
        ics=ic.changeState
        if ics==ChangeState.CALIBRATING:
            # leave calibrating when enough stable values are available
            if ic.isStable() and ic.stableCounter>=calibrationWindow:
                ic.changeState=ChangeState.PRE_MOVE
        elif ics==ChangeState.PRE_MOVE:
            if not ic.isStable():
                ic.changeState=ChangeState.IN_MOVE
                ic.minInMove=ic.pixelChanges
                ic.maxInMove=ic.pixelChanges
        elif ics==ChangeState.IN_MOVE:
            ic.maxInMove=max(ic.maxInMove,ic.pixelChanges)
            peak=ic.maxInMove-ic.minInMove
            dist=ic.pixelChanges-ic.minInMove
            if peak>0:
                relativePeak=dist/peak
                if ic.isStable():
                    if relativePeak<0.1:
                        self.onMoveDetected(cbImageSet)