예제 #1
0
def waitForWindow(title):
	global currentWindow
	currentWindow = Main.waitForWindow(title)
	return currentWindow
예제 #2
0
파일: lib.py 프로젝트: JuergenBohl/fiji
def waitForWindow(title):
	global currentWindow
	currentWindow = Main.waitForWindow(title)
	return currentWindow
예제 #3
0
def startIJ():
	Main.premain()
	global currentWindow
	currentWindow = ImageJ()
	currentWindow.exitWhenQuitting(True)
	Main.postmain()
예제 #4
0
파일: lib.py 프로젝트: JuergenBohl/fiji
def startIJ():
	Main.premain()
	global currentWindow
	currentWindow = ImageJ()
	currentWindow.exitWhenQuitting(True)
	Main.postmain()