Skip to content

janek/bb_utils

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bb_utils

Documentation Status

This repository holds beesbook utilities.

Fiducial markers

The submodule bb_utils.fiducial holds helper functions to generate simple fiducial markers carrying one bit of information as well as functions to find such markers in images.

Usage example:

# Load an arbitrary image that contains four fiducial markers in the corners.
# The approximate marker size must be known.
image = "/mnt/storage/david/data/beesbook/tagdetect/2018ld01.jpg"
markersize = 22
image = scipy.ndimage.imread(image)
# Find four markers in the image's corners (20% of the image's width/height).
# We are using the default markers here.
markers = bb_utils.fiducial.locate_markers_in_corners(image, markersize, corner_ratio=0.20)
# Match the recognized points against the homography of 2018.
H = bb_utils.fiducial.match_homography_points(markers)
# Display everything.
bb_utils.fiducial.display_markers(image, markers, H, dsize=(410, 300))

Output: image

About

Repository of utility scripts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.3%
  • Shell 5.7%