当前位置: 首页>>代码示例>>Python>>正文


Python Scene.predict_pdf方法代码示例

本文整理汇总了Python中scene.Scene.predict_pdf方法的典型用法代码示例。如果您正苦于以下问题:Python Scene.predict_pdf方法的具体用法?Python Scene.predict_pdf怎么用?Python Scene.predict_pdf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在scene.Scene的用法示例。


在下文中一共展示了Scene.predict_pdf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: helper

# 需要导入模块: from scene import Scene [as 别名]
# 或者: from scene.Scene import predict_pdf [as 别名]
rho_0 = rho_0.reshape( X_grid.shape )
rho_1 = helper( x_t[1], y_t[1] ) * w_t[1]
rho_1 = rho_1.reshape( X_grid.shape )

fig, ax_arr = plt.subplots( 3,1,figsize=(5,10) )
ax_arr[0].contourf( X_grid, Y_grid, rho_0, 50, cmap='viridis')
ax_arr[0].axis('equal')
ax_arr[0].set_title('t = %f' % t_arr[0] )
ax_arr[2].contourf( X_grid, Y_grid, rho_1, 50, cmap='viridis')
ax_arr[2].axis('equal')
ax_arr[2].set_title('t = %f' % t_arr[1] )

UV = dynamics( np.vstack( [X_grid.flatten(), Y_grid.flatten() ] ) )
U_grid = UV[0].reshape( X_grid.shape)
V_grid = UV[1].reshape( X_grid.shape)
ax_arr[1].quiver( X_grid, Y_grid, U_grid, V_grid , pivot='mid', scale=50.)
ax_arr[1].axis('equal')

fig.suptitle('Advection for a single vector-field')
plt.show()

print "Testing class prediction routine"
T = 10.0
rho_T = learned_scene.predict_pdf( X_grid, Y_grid, T )
fig, ax_arr = plt.subplots( 2,1,figsize=(5,10) )
ax_arr[0].contourf( X_grid, Y_grid, rho_0, 50, cmap='viridis')
ax_arr[0].axis('equal')
ax_arr[1].contourf( X_grid, Y_grid, rho_T , 50, cmap = 'viridis')
ax_arr[1].axis('equal')
plt.show()
开发者ID:hoj201,项目名称:pedestrian_forecasting,代码行数:32,代码来源:pdf_advection.py


注:本文中的scene.Scene.predict_pdf方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。