ai-cfia / fertiscan-backend

Fertiscan backend
MIT License
1 stars 0 forks source link

Issue #46: Support sending images with /analyze request #57

Closed snakedye closed 3 weeks ago

snakedye commented 4 weeks ago

It's now possible to exclusively use the analyze route as it now support sending multiple images with the request.

# Example request
curl -X POST http://localhost:5000/analyze\
    -H "Authorization: Basic <your_encoded_credentials>" \
    -F "images=@/path/to/image1.jpg" \
    -F "images=@/path/to/image2.jpg" \

Closes #46

TO-DO

Warning

snakedye commented 3 weeks ago

@Youllou This is how the backend we should move to. dss

Try to test it in the front-end and if it does work this PR can be merge.

snakedye commented 3 weeks ago

All the tests pass. image

The third check seems to be an issue in the workflow @ThomasCardin