| 34 | OpencvMatchTemplate |
| 35 | except Exception: |
| 36 | class OPENCVPlaceholder(gui.Label): |
| 37 | icon = default_icon("missing OPENCV") |
| 38 | def __init__(self, msg="In order to use OpenCv widgets install python-opencv \n" + traceback.format_exc()): |
| 39 | super(OPENCVPlaceholder, self).__init__(msg) |
| 40 | self.css_white_space = 'pre' |
| 41 | |
| 42 | from .toolbox_scheduling import TimerWidget |
| 43 |
nothing calls this directly
no test coverage detected