Created
June 19, 2019 10:15
-
-
Save tmibvishal/dc20d4980c79969fcb36195ba47bc192 to your computer and use it in GitHub Desktop.
Real Time Image based Path Tracking Algorithm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Real Time Image based Path Tracking Algorithm | |
### User Interface | |
We have the following possible edge interface | |
```python | |
({ | |
"node": "type: Node | init: node", | |
"edge": "type: Edge | init: edge", | |
"confidence": "type: int | init: 0", | |
"last_matched_i_with_j": "type: int | init: self.i_at_matched_node - 1", | |
"last_matched_j": "type: int | init: 0", | |
"no_of_frames_to_match": "type: int | init: 3", | |
"no_of_continuous_no_match": "type: int | init: 0", | |
"edge_ended": "type: bool | init: False" | |
}) | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment