Tools

Tool Object Detection

Performs object detection using custom trained models deployed on the Landing AI platform.

Args: data (FormData): The input request containing the following fields: - deployment_id (UUID): The unique identifier of the deployed custom model. - image (UploadFile): The image file to analyze for object detection. - confidence (float, optional): Minimum confidence threshold for detections. If not provided, all detections above the model's default threshold are returned.

Returns: ODResponse | JSONResponse List of detected objects with bounding boxes, labels, and confidence scores, or error response.

post/v1/tools/custom-object-detection

Response

Successful Response

Changes