VisionAI Observ
DataVerse
繁體中文
繁體中文
  • 快速開始Observ旅程
  • 技術規格
    • 適用於 Observ 的技術規格
  • 基本概要
    • 建立您的第一個任務
    • 偵測任務概覽
    • 查看AI偵測事件紀錄
    • 查看任務設定
    • 查看AI即時偵測串流
    • 收到通知
    • 設定AI偵測範圍(ROI)
    • 設定事件區域 Edit Zone
    • 設定AI偵測信賴度
    • 設定AI偵測事件參數
    • 收集您專屬的AI數據資料
    • 管理地點與攝影機
    • 查看歷史事件紀錄
    • 查看歷史事件的統計分析
    • 管理組織及使用者
    • 個人化設定
  • 進階功能
    • 系統設定及資源
    • 輸出資料至DataVerse
    • 管理AI模型庫
    • 客製化專屬場景
    • 添加自定義事件 (Beta)
      • (事件元件) 物件卡
      • (事件元件) 區域卡
      • (事件元件) 邏輯卡
        • (事件元件) 邏輯閘 With
        • (事件元件) 邏輯閘 Overlap
        • (事件元件) 邏輯閘 OR
        • (事件元件) 邏輯閘 NOT
        • (事件元件) 邏輯閘 AND
        • (事件元件) 邏輯閘 Object Tag
        • (事件元件) 邏輯閘 Counting
      • (事件元件) 觸發卡
    • 影片任務 (Beta)
  • AI偵測場景與事件
    • 電子圍籬
    • 火焰及煙霧偵測
    • PPE 個人防護具偵測
    • 通道異物偵測
    • 鏽蝕損壞偵測
    • 行人及車輛流量計數
    • 違規停車
    • 違規使用路線
    • 車輛故障
    • 客流計數
    • 排隊狀況監控
  • API 文件
    • API 設置
    • 事件 Event
    • 任務 Task
    • 攝影機 Camera
    • 地點 Location
    • 組織 Organization
    • 計算目標 Compute Target
  • 支援
    • 疑難排解
      • 解決沒有畫面的問題
      • AI模型沒有正常偵測
      • 為何沒有事件
      • 播放Live畫面的速度或卡頓問題
    • FAQs
      • 攝像機解析度只有1080p可以支持嗎?
      • AI信心閾值和偵測閾值有什麽區別?
      • 平臺上看到即時的推論為什麽一會就停了?
      • ROI、禁區及排除區域等各種區域的區別
      • 突然不想偵測某類事件了,可以停止嗎?
Powered by GitBook
On this page
  • Get Camera List
  • Get Camera Details
  1. API 文件

攝影機 Camera

提供攝影機清單及細節API。

Get Camera List

This API retrieves a list of cameras, including the camera ID, camera name, location ID, and camera RTSP.

Endpoint: GET /cameras

Parameters:

Parameter
Description
Type
Require
Default

ids

Fetch specific ids.

String

No

-

limit

The number of cameras to retrieve per page.

integer

No

100

offset

The starting position for the result set.

integer

No

0

Example Request:

GET /cameras?limit=2&offset=0

Example Response:

[
    {
      "id": 1,
      "name": "Camera 1",
      "location_id": 1,
      "rtsp": "rtsp://example.com/camera1",
      "model_name": "",
      "coordinates": {
          "latitude": 20,
          "longitude": 120
      }
    },
    {
      "id": 2,
      "name": "Camera 2",
      "location_id": 2,
      "rtsp": "rtsp://example.com/camera2",
      "model_name": "",
      "coordinates": {
          "latitude": 20,
          "longitude": 120
      }
    }
]

Response Fields:

Field
Description
Type

id

The unique identifier for the camera.

integer

name

The name of the camera.

string

location_id

The ID of the location of the camera.

integer

rtsp

The RTSP stream URL of the camera.

string

model_name

The model name of the camera.

string

coordinates

The latitude and longitude of the camera

object


Get Camera Details

This API retrieves the details of a specific camera, including the camera ID, camera name, location ID, and camera RTSP.

Endpoint: GET /cameras/:camera_id

Path Parameters:

Parameter
Description
Type
Require

camera_id

The unique identifier for the camera.

integer

Required

Example Request:

GET /cameras/1

Example Response:

{
    "id": 1,
    "name": "Camera 1",
    "location_id": 1,
    "rtsp": "rtsp://example.com/camera1",
    "model_name": "",
    "coordinates": {
        "latitude": 20,
        "longitude": 120
    }
}

Response Fields:

Field
Description
Type

id

The unique identifier for the camera.

integer

name

The name of the camera.

string

location_id

The ID of the location of the camera.

integer

rtsp

The RTSP stream URL of the camera.

string

model_name

The model name of the camera.

string

coordinates

Latitude and longitude of the camera

object

Previous任務 TaskNext地點 Location

Last updated 8 months ago