Skip to main content

Get classification train images

GET 

https://demo.frigate.video/api/classification/:name/train

Gets the train images for a specific classification model. The name must exist in the classification models. Returns a success message or an error if the name is invalid.

Request​

Path Parameters

    name Namerequired

Responses​

Successful Response

Schema
    import http.client

    conn = http.client.HTTPSConnection("demo.frigate.video")
    payload = ''
    headers = {
    'Accept': 'application/json'
    }
    conn.request("GET", "/api/classification/:name/train", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    Request Collapse all
    Base URL
    https://demo.frigate.video/api
    Parameters
    — pathrequired
    ResponseClear

    Click the Send API Request button above and see the response here!