Skip to content

Commit

Permalink
bump glassesTools
Browse files Browse the repository at this point in the history
adjust b_codeMarkerInterval now that it can show gaze-on-plane results based only on homography as well
  • Loading branch information
dcnieho committed Dec 12, 2024
1 parent bf47266 commit 11faaa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
glassesTools[GUI]==1.12.7 # pulls in various other dependencies such as imgui_bundle, matplotlib, numpy, opencv, pandas, polars
glassesTools[GUI]==1.12.9 # pulls in various other dependencies such as imgui_bundle, matplotlib, numpy, opencv, pandas, polars
I2MC>=2.2.6
aiosqlite
uvloop ; sys_platform != "win32"
Expand Down
3 changes: 1 addition & 2 deletions src/glassesValidator/process/b_codeMarkerInterval.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,7 @@ def do_the_work(working_dir, config_dir, gui: video_player.GUI, show_poster):

# if have gaze in world info, draw it too (also only first)
if hasPosterGaze and frame_idx in gazesPoster:
if hasCamCal:
gazesPoster[frame_idx][0].draw_on_world_video(frame, cameraParams, subPixelFac)
gazesPoster[frame_idx][0].draw_on_world_video(frame, cameraParams, subPixelFac, None if not frame_idx in poses else poses[frame_idx])
if show_poster:
gazesPoster[frame_idx][0].draw_on_plane(refImg, poster, subPixelFac)

Expand Down

0 comments on commit 11faaa1

Please sign in to comment.