本文整理匯總了Python中gui.utils.Colors.get_random_numpy_color方法的典型用法代碼示例。如果您正苦於以下問題:Python Colors.get_random_numpy_color方法的具體用法?Python Colors.get_random_numpy_color怎麽用?Python Colors.get_random_numpy_color使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gui.utils.Colors
的用法示例。
在下文中一共展示了Colors.get_random_numpy_color方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: populate_widget
# 需要導入模塊: from gui.utils import Colors [as 別名]
# 或者: from gui.utils.Colors import get_random_numpy_color [as 別名]
def populate_widget(self, item):
dcg_queue_item = item.get_queue_entry()
dcg_child_list = []
sw_list = []
if dcg_queue_item.interleave_sw_list:
sw_list = dcg_queue_item.interleave_sw_list
for child in dcg_queue_item.interleave_items:
dcg_child_list.append(child["data_model"])
else:
for children in dcg_queue_item.get_queue_entry_list():
if isinstance(children.get_view(), queue_item.DataCollectionQueueItem):
dcg_child_list.append(children.get_data_model())
acq_par = (
children.get_data_model().acquisitions[0].acquisition_parameters
)
sw_list.append(
[
len(sw_list),
0,
acq_par.first_image,
acq_par.num_images,
acq_par.osc_start,
acq_par.osc_range * acq_par.num_images,
]
)
for sw in sw_list:
color = Colors.get_random_numpy_color()
sw.append(color)
self.subwedge_table.setRowCount(0)
for sw in sw_list:
acq_par = dcg_child_list[sw[0]].acquisitions[0].acquisition_parameters
row = self.subwedge_table.rowCount()
self.subwedge_table.setRowCount(row + 1)
param_list = (
str(acq_par.osc_start),
str(acq_par.osc_range),
str(acq_par.num_images),
str(acq_par.exp_time),
str(acq_par.energy),
str(acq_par.transmission),
str(acq_par.resolution),
)
# color = Colors.get_random_color()
# sw.append(color)
for col in range(7):
self.subwedge_table.setItem(
row, col, QtImport.QTableWidgetItem(param_list[col])
)
color = QtImport.QColor(
int(sw[-1][0] * 255), int(sw[-1][0] * 255), int(sw[-1][0] * 255)
)
color.setAlpha(100)
self.subwedge_table.item(row, col).setBackground(color)
# QtGui.QColor(Colors.TASK_GROUP[sw[0]]))
self.polar_scater_widget.draw_multiwedge_scater(sw_list)