1 Star 0 Fork 0

egrp1234/zoomcalib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tag36h11_mosaic.py 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
Pradeep Ranganathan 提交于 2015-08-09 02:30 . Remove trailing whitespace
from __future__ import division
#--------------------------------------
class TagMosaic(object):
#--------------------------------------
"""
The tag mosaic for the 36h11 family consists of 587 tags
laid out in 25 rows and 24 columns.
Without loss of generality, we assume that the center of
tag 0 lies at (0, 0).
"""
def __init__(self, tag_spacing_meters):
self.scale = tag_spacing_meters
def get_position_meters(self, id):
row, col = id % 24, -(id // 24)
return row*self.scale, col*self.scale
def get_row(self, id):
return id // 24
def get_col(self, id):
return id % 24
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/egrp1234/zoomcalib.git
git@gitee.com:egrp1234/zoomcalib.git
egrp1234
zoomcalib
zoomcalib
master

搜索帮助