MCPcopy Create free account
hub / github.com/PyImageSearch/imutils / __init__

Method __init__

imutils/video/fps.py:5–10  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3
4class FPS:
5 def __init__(self):
6 # store the start time, end time, and total number of frames
7 # that were examined between the start and end intervals
8 self._start = None
9 self._end = None
10 self._numFrames = 0
11
12 def start(self):
13 # start the timer

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected