Use Gaze Detection

ビデオのフレームで視線検出モデルを実行します。

動画のフレームに視線検出を適用できます。Roboflow Video Inference API は、誰がどの方向を見ているか、および誰がどの点を見ているかを計算するために必要なデータを返します。

視線検出結果の後処理について詳しく学ぶ.

Video Inference API で Gaze Detection を使用する

First, install the Roboflow Python package:

pip install roboflow

Next, create a new Python file and add the following code:

from roboflow import Roboflow, GazeModel

rf = Roboflow(api_key="API_KEY")
model = GazeModel()

job_id, signed_url, expire_time = model.predict_video(
    "football-video.mp4",
    fps=5,
    prediction_type="batch-video",
)

results = model.poll_until_video_results(job_id)

print(results)

Above, replace:

  • API_KEY: with your Roboflow API key

  • PROJECT_NAME: with your Roboflow project ID.

  • MODEL_ID: with your Roboflow model ID.

Learn how to retrieve your API key.

Learn how to retrieve a model ID.

Last updated

Was this helpful?