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


Python SDAPlotter.imagePlot方法代码示例

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


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

示例1: imagePlot

# 需要导入模块: from uk.ac.diamond.scisoft.analysis import SDAPlotter [as 别名]
# 或者: from uk.ac.diamond.scisoft.analysis.SDAPlotter import imagePlot [as 别名]
 def imagePlot(self, panel=None):
     if panel is None:
         panel=self.panel;
         
     da=self.chData.cagetArrayUnsigned();
     ds = IntegerDataset.createFromObject(da);
     newds=ds.reshape([self.height, self.width]);
 
     SDAPlotter.imagePlot(panel, newds);
开发者ID:jjkraken,项目名称:gda-epics,代码行数:11,代码来源:EpicsWaveform.py

示例2: imagePlot0

# 需要导入模块: from uk.ac.diamond.scisoft.analysis import SDAPlotter [as 别名]
# 或者: from uk.ac.diamond.scisoft.analysis.SDAPlotter import imagePlot [as 别名]
 def imagePlot0(self, panel=None):
     if panel is None:
         panel=self.panel;
         
     da=self.chData.cagetArrayByte()
     ds = ByteDataset.createFromObject(da);
 
     newds=ds.reshape([self.height, self.width]);
 
     SDAPlotter.imagePlot(panel, newds);
开发者ID:jjkraken,项目名称:gda-epics,代码行数:12,代码来源:EpicsWaveform.py

示例3: display

# 需要导入模块: from uk.ac.diamond.scisoft.analysis import SDAPlotter [as 别名]
# 或者: from uk.ac.diamond.scisoft.analysis.SDAPlotter import imagePlot [as 别名]
	def display(self,file=None):
		if file==None:
			file = self.getFullFileName()
#		self.data.loadPilatusData(file)
		self.data.load(PilatusTiffLoader(file));
		dataset = self.data.getAxis(0);

		if self.panel:
			if self.logScale:
				SDAPlotter.imagePlot(self.panel, DatasetUtils.lognorm(dataset)); #For RCP GUI
			else:
				SDAPlotter.imagePlot(self.panel, dataset); #For RCP GUI
		else:
			print "No panel set to display"
			raise Exception("No panel_name set in %s. Set this or set %s.setAlive(False)" % (self.name,self.name));
开发者ID:openGDA,项目名称:gda-core,代码行数:17,代码来源:DummyAreaDetector.py

示例4: imagePlot2

# 需要导入模块: from uk.ac.diamond.scisoft.analysis import SDAPlotter [as 别名]
# 或者: from uk.ac.diamond.scisoft.analysis.SDAPlotter import imagePlot [as 别名]
 def imagePlot2(self, panel=None):
     if panel is None:
         panel=self.panel;
         
     da=self.chData.cagetArrayByte();
     
     #To convert from singed to unsigned
     #method 2
     da=[x&0xff for x in da]
     
 #method 3
 #    ds1=array.array('B' [x&0xff for x in ds1] )
         
     ds = IntegerDataset.createFromObject(da);
     newds=ds.reshape([self.height, self.width]);
     
     SDAPlotter.imagePlot(panel, newds);
开发者ID:jjkraken,项目名称:gda-epics,代码行数:19,代码来源:EpicsWaveform.py

示例5: plot_image

# 需要导入模块: from uk.ac.diamond.scisoft.analysis import SDAPlotter [as 别名]
# 或者: from uk.ac.diamond.scisoft.analysis.SDAPlotter import imagePlot [as 别名]
def plot_image(*arg, **kwarg):
    _plotter.imagePlot(*arg, **kwarg)
开发者ID:erwindl0,项目名称:scisoft-core,代码行数:4,代码来源:jyplot.py


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