本文整理匯總了Python中nav_msgs.msg.OccupancyGrid.data[120][100]方法的典型用法代碼示例。如果您正苦於以下問題:Python OccupancyGrid.data[120][100]方法的具體用法?Python OccupancyGrid.data[120][100]怎麽用?Python OccupancyGrid.data[120][100]使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nav_msgs.msg.OccupancyGrid
的用法示例。
在下文中一共展示了OccupancyGrid.data[120][100]方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from nav_msgs.msg import OccupancyGrid [as 別名]
# 或者: from nav_msgs.msg.OccupancyGrid import data[120][100] [as 別名]
def __init__(self, pt=None):
self.n_particles = 10
self.lin_spread = .05
self.ang_spread = 1
self.pt = pt if pt else (5,5,5)
self.variance = 10
self.gauss_constant = math.sqrt(2*math.pi)
self.expected_value = 0
map = OccupancyGrid()
map.header.frame_id = '/odom'
# map.info.map_load_time = rospy.Time.now()
map.info.resolution = .1 # The map resolution [m/cell]
map.info.width = 1000
map.info.height = 1000
map.data = [[0 for _ in range(map.info.height)] for _ in range(map.info.width)]
# for row in range(map.info.height):
# for col in range(map.info.width):
# print str(col) + str(row)
# map.data[col] = 0
map.data[40][50]=1
map.data[120][100] = 1
map.data[12][110] = 1
# map.data[13][10] = 1
# map.data[13][11] = 1
# map.data[11][10] = 1
for row in range(map.info.height):
map.data[0][row] = 1
map.data[map.info.width-1][row] = 1
for col in range(map.info.width):
map.data[col][0] = 1
map.data[col][map.info.height -1] = 1
#https://github.com/z2daj/rbe3002/blob/master/scripts/lab3.py
print "start"
self.occupancy_field = OccupancyField(map)