AndreiDz
AndreiDz
https://github.com/cuuupid/console-logging/blob/62ed79d1a47645026d70f6e20407fa1d6e605f8d/console_logging/console.py#L22 `"[%d:%d:%d:%d]" % (dt.now().time().hour, dt.now().time().minute, dt.now().time().second, dt.now().time().microsecond)` Can use strftime `datetime.datetime.now().strftime('%H:%M:%S:%f'))`
bloodvessels.py ` ret,f6 = cv2.threshold(f5,15,255,cv2.THRESH_BINARY)` It may be necessary to apply a dynamic search for the binarization threshold, the result strongly depends on the illumination. For example Otsu's method.
It is worth considering the possibility of stopping the script.