Spaces:
Running
on
T4
Running
on
T4
Commit
·
8e5893e
1
Parent(s):
dcad101
some
Browse files
main.py
CHANGED
@@ -4,4 +4,41 @@ app = Flask(__name__)
|
|
4 |
|
5 |
@app.route('/')
|
6 |
def hello():
|
7 |
-
return {"hei": "you succesfully deployed"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
@app.route('/')
|
6 |
def hello():
|
7 |
+
return {"hei": "you succesfully deployed"}
|
8 |
+
|
9 |
+
@app.route('/get-npy')
|
10 |
+
def get_npy():
|
11 |
+
# # Get the 'img_url' from the query parameters
|
12 |
+
# img_url = request.args.get('img_url', '') # Default to empty string if not provided
|
13 |
+
|
14 |
+
# if not img_url:
|
15 |
+
# return jsonify({"error": "No img_url provided"}), 400
|
16 |
+
|
17 |
+
# raw_image = Image.open(requests.get(img_url, stream=True).raw).convert("RGB")
|
18 |
+
# # Convert the PIL Image to a NumPy array
|
19 |
+
# image_array = np.array(raw_image)
|
20 |
+
# # Since OpenCV expects BGR, convert RGB to BGR
|
21 |
+
# image = image_array[:, :, ::-1]
|
22 |
+
|
23 |
+
# if image is None:
|
24 |
+
# raise ValueError("Image not found or unable to read.")
|
25 |
+
|
26 |
+
# predictor.set_image(image)
|
27 |
+
# image_embedding = predictor.get_image_embedding().cpu().numpy()
|
28 |
+
|
29 |
+
# # Convert the embedding array to bytes
|
30 |
+
# buffer = io.BytesIO()
|
31 |
+
# np.save(buffer, image_embedding)
|
32 |
+
# buffer.seek(0)
|
33 |
+
|
34 |
+
# # Create a response with the correct MIME type
|
35 |
+
# return send_file(buffer, mimetype='application/octet-stream', as_attachment=True, download_name='embedding.npy')
|
36 |
+
# except Exception as e:
|
37 |
+
# # Log the error message if needed
|
38 |
+
# print(f"Error processing the image: {e}")
|
39 |
+
# # Return a JSON response with the error message and a 400 Bad Request status
|
40 |
+
# return jsonify({"error": "Error processing the image", "details": str(e)}), 400
|
41 |
+
return {"hei": "gotnpy"}
|
42 |
+
|
43 |
+
if __name__ == '__main__':
|
44 |
+
app.run(debug=True)
|