Skip to content
Snippets Groups Projects
Commit 8ef44a7e authored by Richard Torenvliet's avatar Richard Torenvliet
Browse files

Remove this obsolete file

parent 1578f00a
No related branches found
No related tags found
No related merge requests found
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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment