本文整理汇总了Python中ij.gui.GenericDialog.addRadioButtonGroup方法的典型用法代码示例。如果您正苦于以下问题:Python GenericDialog.addRadioButtonGroup方法的具体用法?Python GenericDialog.addRadioButtonGroup怎么用?Python GenericDialog.addRadioButtonGroup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ij.gui.GenericDialog
的用法示例。
在下文中一共展示了GenericDialog.addRadioButtonGroup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: uScopeCalDialog
# 需要导入模块: from ij.gui import GenericDialog [as 别名]
# 或者: from ij.gui.GenericDialog import addRadioButtonGroup [as 别名]
def uScopeCalDialog(cal):
''' Pop up a dialog asking user to choose from the calibration names etc.
CalIdx, SetGlobalScale, AddScaleBar = uScopeCalDialog(cal)
`cal` should be the object containing `names`, `cals`, `units` attributes
as set in the "user_settings.py" file.
`CalIdx` is the list index to the chosen calibration.
Eg., if the options were
['5x', '10x', '20x']
and the user chose '10x', then
CalIdx = 1
Returns `None` if the user cancelled the dialog.
`SetGlobalScale` is a boolean (True/False) from a checkbox option, if the user wants this calibration set 'globally' to all open images.
`AddScaleBar` is also a boolean (True/False), for a checkbox option, if user would like to run "Scale Bar..." afterwards.
'''
# The following inspired heavily by Correct_3D_drift.py:
#print "uScopeCalDialog():"
#print cal.names, [str(x) for x in cal.cals]
gd = GenericDialog("Microscope Calibrations")
gd.addMessage("Choose the calibration to load:")
# generate text to display in list:
# Radio Buttons:
CalStr = []
CalType_IsFunc = []
for ii, name in enumerate(cal.names):
if mc_DEBUG: print( "item #%i: name=" % (ii), name, "\n\t type=", type(name) )
if isinstance(name, basestring):
'''It's just a regular calibration setting'''
CalStr.append( name + " (%s"%cal.cals[ii] + " pixels/%s)"%cal.units[ii] )
else:
''' Assume we'll be loading a custom function/class '''
CalStr.append( name.name ) # get the name from the Class' .name attribute
#end if(str)
#end for(cal.names)
'''if > 20 cals, use dropdown list, otherwise use radio buttons'''
if len(cal.names) > 20:
Radio=False
# Drop-Down list:
gd.addChoice(" Calibration:", CalStr, CalStr[0] ) # default = 1st (#0)
else:
Radio=True
gd.addRadioButtonGroup(" Calibration:", CalStr, len(CalStr), 1, CalStr[0])
#addRadioButtonGroup(label, [String items], rows, columns, String:defaultItem)
#end if(cal>20)
gd.addCheckbox("Apply Scale to all open images?", False)
gd.addCheckbox("Add Scale Bar to this image?", False)
gd.addMessage("These calibrations can be altered by editing the file: \nFiji.app/plugins/Scripts/Plugins/Analyze/...\n\tMicroscope Measurement Tools/...\n\tMicroscope_Calibrations_user_settings.py")
gd.showDialog()
if gd.wasCanceled():
return None, None, None # return None's if user cancels
if Radio:
ChosenCal = gd.getNextRadioButton()
# Find the index to the chosen radio button w/ [list].index():
CalIdx = CalStr.index( ChosenCal )
else:
ChosenCal = gd.getNextChoiceIndex()
CalIdx = ChosenCal # the index to the choice
SetGlobalScale = gd.getNextBoolean()
AddScaleBar = gd.getNextBoolean()
#if mc_DEBUG: print( ChosenCal,CalIdx, SetGlobalScale )
#if mc_DEBUG: print( "end uScopeCalDialog()." )
return CalIdx, SetGlobalScale, AddScaleBar