utils

crop_and_save_image(input_path:str, output_path:str, x1:int, y1:int, x2:int, y2:int)
Crops a region from the input image and saves it to the output path.
Parameters:
Returns:
None: None
Raises:
Examples:
>>> crop_and_save_image("input.jpg", "output.jpg", 10, 20, 100, 200)
Labels:

src_PyThon_ContactAngle_DropDetection_utils_crop_and_save_image