Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/pupil_apriltags/bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import platform
import sys
from pathlib import Path
from typing import Optional, Tuple
from typing import List, Optional, Tuple

import numpy

Expand Down Expand Up @@ -455,7 +455,7 @@ def detect(
estimate_tag_pose: bool = False,
camera_params: Optional[Tuple[float, float, float, float]] = None,
tag_size: Optional[float] = None,
) -> Detection:
) -> List[Detection]:
"""Run detectons on the provided image.

The image must be a grayscale image of type ``numpy.uint8``.
Expand Down