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


Python Grid.image2Grid方法代码示例

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


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

示例1: loadReferenceImage

# 需要导入模块: from Grid import Grid [as 别名]
# 或者: from Grid.Grid import image2Grid [as 别名]
 def loadReferenceImage(self, path = ''):
     ref_grid = Grid()
     #if self.grid.ext_color:
         #self.ref_name = 'ext_'+self.ref_name
     ref_grid.image2Grid(path+self.ref_name, ext_colors=self.grid.ext_color)
     ref_grid.visualize()
     return ref_grid
开发者ID:AndraAlexa,项目名称:NC-urban-CA,代码行数:9,代码来源:CellularAutomata.py

示例2: Grid

# 需要导入模块: from Grid import Grid [as 别名]
# 或者: from Grid.Grid import image2Grid [as 别名]
#ref_name = 'milford1999_21.jpg'
simulation = False;

# generate grid
prob_grid1 = Grid(add='prob_')
prob_grid2 = Grid(add='prob_')
grid1 = Grid()
grid2 = Grid()
#grid = Grid()

if simulation:
    # generate random grid with size m
    grid1.rndGenerator(grid_size=250, savePlots=False, name='rnd_simulation')
else:
    # load Image to grid
    grid1.image2Grid(fname, path='Images\\', mode='yuv', output=False, ext_colors=False)
    grid2.image2Grid(fname, path='Images\\', mode='yuv', output=False, ext_colors=True)
    prob_grid1.image2Grid(fname, path='Images\\', mode='yuv', output=False, ext_colors=False)
    prob_grid2.image2Grid(fname, path='Images\\', mode='yuv', output=False, ext_colors=True)

# save initial state
#init = grid.grid.copy()
# Create CA with reference image
ca = CellularAutomata(prob_grid2, neighbourhood='Moore', rules='Conway', ref_name=ref_name)
#ca2 = CellularAutomata(grid2, neighbourhood='Moore', rules='Probabilistic', ref_name=ref_name)
#ca3 = CellularAutomata(prob_grid1, neighbourhood='Moore', rules='Conway', ref_name=ref_name)
#ca4 = CellularAutomata(prob_grid2, neighbourhood='Moore', rules='Probabilistic', ref_name=ref_name)

print 'intial state: '
ca.grid.visualize()
#ca1.grid.saveImage(path='EMDimages\\')
开发者ID:AndraAlexa,项目名称:NC-urban-CA,代码行数:33,代码来源:citySim_main2.py


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