Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
"id": "player_detection",
"title": "Player Detection",
"description": "Detect players in a single image.",
"input_types": ["video_frame"],
"output_types": ["detections"],
"capabilities": ["player_detection"],
"inputs": {
"image_base64": "string",
"device": "string",
Expand All @@ -32,6 +35,9 @@
"id": "ball_detection",
"title": "Ball Detection",
"description": "Detect the football in a single image.",
"input_types": ["video_frame"],
"output_types": ["detections"],
"capabilities": ["ball_detection"],
"inputs": {
"image_base64": "string",
"device": "string",
Expand All @@ -46,6 +52,9 @@
"id": "pitch_detection",
"title": "Pitch Detection",
"description": "Detect pitch keypoints for homography mapping.",
"input_types": ["video_frame"],
"output_types": ["keypoints"],
"capabilities": ["pitch_detection"],
"inputs": {
"image_base64": "string",
"device": "string",
Expand All @@ -60,6 +69,9 @@
"id": "radar",
"title": "Radar View",
"description": "Generate radar (bird's-eye) view of player positions.",
"input_types": ["video_frame"],
"output_types": ["radar_points"],
"capabilities": ["radar_visualization"],
"inputs": {
"image_base64": "string",
"device": "string",
Expand Down
3 changes: 3 additions & 0 deletions plugins/ocr/src/forgesyte_ocr/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"id": "analyze",
"title": "Extract Text",
"description": "Extract text and text blocks from an uploaded image.",
"input_types": ["image_bytes"],
"output_types": ["text", "blocks"],
"capabilities": ["text_extraction"],
"inputs": {
"image_base64": "string",
"language": "string",
Expand Down