You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
404 B
10 lines
404 B
from functools import cached_property
|
|
|
|
from stabilize.algorithm.adaptiveSmoothingWindow import AdaptiveSmoothingWindow
|
|
|
|
|
|
class Win:
|
|
@staticmethod
|
|
def create_window(method,size, threshold,img_threshold):
|
|
print(f"开启稳定窗口method={method},size={size}, threshold={threshold},img_threshold={img_threshold}")
|
|
return AdaptiveSmoothingWindow(method,size, threshold,img_threshold)
|