本文整理汇总了Python中VisionEgg.FlowControl.Presentation.sort_stats方法的典型用法代码示例。如果您正苦于以下问题:Python Presentation.sort_stats方法的具体用法?Python Presentation.sort_stats怎么用?Python Presentation.sort_stats使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VisionEgg.FlowControl.Presentation
的用法示例。
在下文中一共展示了Presentation.sort_stats方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: update_movie
# 需要导入模块: from VisionEgg.FlowControl import Presentation [as 别名]
# 或者: from VisionEgg.FlowControl.Presentation import sort_stats [as 别名]
anchor = 'center',
size = (width*scale,height*scale),
mipmaps_enabled = 0,
texture_min_filter=gl.GL_LINEAR)
texture_object = stimulus.parameters.texture.get_texture_object()
def update_movie():
# While movie.play() decompresses the movie to pygame surface
# in a separate thread, this sends the data to OpenGL.
texture_object.put_sub_image( pygame_surface )
viewport = Viewport(screen=screen,
stimuli=[stimulus,text])
p = Presentation(go_duration=('forever',),
viewports=[viewport],
handle_event_callbacks=[(pygame.locals.QUIT, quit),
(pygame.locals.KEYDOWN, keydown)],
)
p.add_controller(None,None,FunctionController(during_go_func=update_movie,
temporal_variables=TIME_INDEPENDENT))
movie.play()
#p.go()
import cProfile,pstats
cProfile.run('p.go()','mpeg_profile')
p = pstats.Stats('mpeg_profile')
p.sort_stats('cumulative')
p.print_stats()