feat: add calculate_optical_flow

This commit is contained in:
2025-12-30 01:37:08 +03:00
parent a02c20a8ff
commit a06442b729
2 changed files with 53 additions and 29 deletions

View File

@@ -7,7 +7,7 @@ from typing import Literal, Optional, Tuple
from PIL import Image
FeatureMethod = Literal["orb", "sift", "akaze", "brisk"]
DEFAULT_METHOD = "akaze"
DEFAULT_METHOD = "orb"
@dataclass
class VisionChunk: