當前位置: 首頁>>代碼示例>>Python>>正文


Python OccupancyGrid.data[40][50]方法代碼示例

本文整理匯總了Python中nav_msgs.msg.OccupancyGrid.data[40][50]方法的典型用法代碼示例。如果您正苦於以下問題:Python OccupancyGrid.data[40][50]方法的具體用法?Python OccupancyGrid.data[40][50]怎麽用?Python OccupancyGrid.data[40][50]使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在nav_msgs.msg.OccupancyGrid的用法示例。


在下文中一共展示了OccupancyGrid.data[40][50]方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from nav_msgs.msg import OccupancyGrid [as 別名]
# 或者: from nav_msgs.msg.OccupancyGrid import data[40][50] [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)
開發者ID:mcruthven,項目名稱:MobileRobotics,代碼行數:43,代碼來源:test.py


注:本文中的nav_msgs.msg.OccupancyGrid.data[40][50]方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。