本文整理汇总了Python中ij.ImagePlus.updateAndRepaintWindow方法的典型用法代码示例。如果您正苦于以下问题:Python ImagePlus.updateAndRepaintWindow方法的具体用法?Python ImagePlus.updateAndRepaintWindow怎么用?Python ImagePlus.updateAndRepaintWindow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ij.ImagePlus
的用法示例。
在下文中一共展示了ImagePlus.updateAndRepaintWindow方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ImagePlus
# 需要导入模块: from ij import ImagePlus [as 别名]
# 或者: from ij.ImagePlus import updateAndRepaintWindow [as 别名]
orig = ImagePlus(fi)
strName = os.path.basename(fi)
strName = strName.split('.')[0]
lStr = strName.split('-')
l = len(lStr)
strNum = lStr[l-1]
iNum = int(strNum)
orig.setTitle(strNum)
cal = orig.getCalibration()
strUnit = cal.getUnit()
if strUnit == "micron":
mu = IJ.micronSymbol
strUnit = mu + "m"
cal.setUnit(strUnit)
orig.setCalibration(cal)
orig.updateAndRepaintWindow()
# IJ.run(orig, "Enhance Contrast", "saturated=0.35")
IJ.run(orig, "16-bit", "")
orig.show()
outPth = sTifPath + strName + ".tif"
IJ.saveAs(orig, "Tiff", outPth)
time.sleep(1)
orig.close()
toc = time.time()
elapsed = toc - tic
print("analyzed %g images" % i)
print("completed in %g sec" % elapsed )