Best Python code snippet using ATX
simple-ide.py
Source:simple-ide.py
...11 # initialize the list of reference points and boolean indicating12 # whether cropping is being performed or not13 cropping = [False]14 clone = imgs[0]15 def _click_and_crop(event, x, y, flags, param):16 # grab references to the global variables17 # global ref_pt, cropping18 # if the left mouse button was clicked, record the starting19 # (x, y) coordinates and indicate that cropping is being20 # performed21 if event == cv2.EVENT_LBUTTONDOWN:22 ref_pt[0] = (x, y)23 cropping[0] = True24 # check to see if the left mouse button was released25 elif event == cv2.EVENT_LBUTTONUP:26 # record the ending (x, y) coordinates and indicate that27 # the cropping operation is finished28 ref_pt[1] = (x, y)29 cropping[0] = False...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!