Skip to content

Commit

Permalink
[Temporary] Added debug messages to projection
Browse files Browse the repository at this point in the history
  • Loading branch information
integraledelebesgue committed Nov 11, 2024
1 parent d136346 commit d1756c5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import cv2
import numpy as np
from icecream import ic

from .....core.calibration import Calibration
from .....core.transformation import ProjectiveTransformation
Expand Down Expand Up @@ -51,6 +52,10 @@ def estimate(
if common.sum() < 6:
return None

ic(common)
ic(from_keypoints)
ic(to_keypoints)

from_points_2d: FloatArray2 = from_keypoints.view()[common][:, [0, 1]]
to_points_2d: FloatArray2 = to_keypoints.view()[common][:, [0, 1]]

Expand Down

0 comments on commit d1756c5

Please sign in to comment.