INNER CODE UNIT · Python
get_image
chonyy/AI-basketball-analysis · src/app_helper.py:99
def get_image(image_path, img_name, response):
output_path = './static/detections/'
# reading the images & apply detection
image = cv2.imread(image_path)
filename = img_name
detection = detect_image(image, response)
cv2.imwrite(output_path + '{}' .format(filename), detection)
print('output saved to: {}'.format(output_path + '{}'.format(filename)))
def detectionAPI(response, image_path):
image = cv2.imread(image_path)
detect_API(response, image)