Aayush Jain

Results 1 comments of Aayush Jain

``` def send_request(last_image_path, optical_flow_path,current_image_path): url = "http://localhost:7860/sdapi/v1/img2img" with open(last_image_path, "rb") as b: last_image_encoded = base64.b64encode(b.read()).decode("utf-8") # Load and process the last image last_image = cv2.imread(last_image_path) last_image = cv2.cvtColor(last_image, cv2.COLOR_BGR2RGB) #...