f"This operation is going to set all discard_first and discard_last flags in {dataset.csv_file}. If you only want to see the current state use the --view flag."
)
_input=input("Are you okay with setting these flags to false? (y/n): ")
if_input.lower()!="y":
exit(0)
ifnotargs.view:
dataset.table[HEADER_DISC_FIRST]=False
dataset.table[HEADER_DISC_LAST]=False
wname="μ-map"
cv.namedWindow(wname,cv.WINDOW_NORMAL)
cv.resizeWindow(wname,1600,900)
controls="l = discard last, f = discard first, b = discard both, n = discard none"