func_test.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. from flask import Flask, request, jsonify
  2. import os
  3. from urllib.request import urlretrieve
  4. import time
  5. from image_search import ImageSearchEngine
  6. app = Flask(__name__)
  7. # 配置常量
  8. UPLOAD_FOLDER = 'static/images'
  9. ALLOWED_EXTENSIONS = {'png', 'jpg', 'jpeg', 'gif', 'bmp'}
  10. # 搜索参数默认值
  11. TOP_K = 5 # 默认返回的最大结果数
  12. MIN_SCORE = 0.0 # 默认最小相似度分数
  13. MAX_SCORE = 100.0 # 默认最大相似度分数
  14. os.makedirs(UPLOAD_FOLDER, exist_ok=True)
  15. # 初始化图像搜索引擎
  16. search_engine = ImageSearchEngine()
  17. # @app.route("/initialize", methods=["POST"])
  18. # def initialize():
  19. # # See FC docs for all the HTTP headers: https://www.alibabacloud.com/help/doc-detail/132044.htm#common-headers
  20. # request_id = request.headers.get("x-fc-request-id", "")
  21. # print("FC Initialize Start RequestId: " + request_id)
  22. # # do your things
  23. # # Use the following code to get temporary credentials
  24. # # access_key_id = request.headers['x-fc-access-key-id']
  25. # # access_key_secret = request.headers['x-fc-access-key-secret']
  26. # # access_security_token = request.headers['x-fc-security-token']
  27. # print("FC Initialize End RequestId: " + request_id)
  28. # return "Function is initialized, request_id: " + request_id + "\n"
  29. @app.route("/", methods=["POST"])
  30. def invoke():
  31. """处理图片上传请求"""
  32. try:
  33. # 获取并验证参数
  34. data = request.get_json()
  35. if not data:
  36. return jsonify({'error': '请求必须包含JSON数据'}), 400
  37. print(f"Received data: {data}")
  38. image_url = data.get('url')
  39. time_base = str(time.time() * 1000)
  40. image_path = os.path.join(UPLOAD_FOLDER, time_base + os.path.basename(image_url))
  41. urlretrieve(image_url, image_path)
  42. start_time = time.time()
  43. search_engine._process_image(image_path)
  44. os.remove(image_path)
  45. return jsonify({"vector_spend_time": time.time() - start_time}),200
  46. except Exception as e:
  47. return jsonify({'error': str(e)}), 500
  48. if __name__ == '__main__':
  49. app.run(host='0.0.0.0', port=5001, debug=False)