Commit 8ef44a7e authored by Richard Torenvliet's avatar Richard Torenvliet

Remove this obsolete file

parent 1578f00a
import cv2
class ViewState():
def __init__(self):
self.variables = {}
def update(self, key, value):
self.variables[key] = value
def init_eigenvalue_trackbars(n_components, s, callback, window='image'):
cv2.namedWindow(window)
for i in range(n_components):
cv2.createTrackbar('{}'.format(i), 'eigenvalues', 50, 100, callback)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment