Graduation API
    • AI_API
      • API Root
        GET
      • API Health Status
        GET
      • Water Hyacinth Detection
        POST
      • Schemas
        • PredictionSchema
    • backend_API
      • Profiles
        • List profiles
        • Create profile
        • Update profile
        • Delete profile
      • Classification Runs
        • List classification runs
        • Create classification run
        • Update classification run
        • Delete classification run
      • Schemas
        • Profile
        • ProfileInput
        • ClassificationRun
        • ClassificationRunInput
    • Water Hyacinth Detection API
      • Describe the API entrypoint
        GET
      • Describe the mounted API base path
        GET
      • Predict water-hyacinth coverage and bounding boxes for one image
        POST
      • Predict water-hyacinth coverage and bounding boxes for multiple images
        POST
      • Check API readiness
        GET
      • Schemas
        • BatchPredictionItem
        • Body_predict_batch_endpoint_api_v1_water_hyacinth_predict_batch_post
        • Body_predict_endpoint_api_v1_water_hyacinth_predict_post
        • BoundingBox
        • HTTPValidationError
        • HealthResponse
        • PredictionResponse
        • ValidationError
    Github Repo

    BoundingBox(BoundingBox)

    {
        "x1": 0,
        "y1": 0,
        "x2": 0,
        "y2": 0,
        "confidence": 0,
        "width": 0,
        "height": 0
    }
    Built with