當前位置: 首頁>>代碼示例>>Python>>正文


Python Plotter.set_data方法代碼示例

本文整理匯總了Python中Plotter.Plotter.set_data方法的典型用法代碼示例。如果您正苦於以下問題:Python Plotter.set_data方法的具體用法?Python Plotter.set_data怎麽用?Python Plotter.set_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Plotter.Plotter的用法示例。


在下文中一共展示了Plotter.set_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: Presenter

# 需要導入模塊: from Plotter import Plotter [as 別名]
# 或者: from Plotter.Plotter import set_data [as 別名]
class Presenter(QtGui.QScrollArea):
    def __init__(self):
        super(Presenter, self).__init__()
        self.initialize()

    def initialize(self):
        self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
        self.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOn)
        self.setWidgetResizable(True)

        self.widget = QtGui.QWidget()
        self.setWidget(self.widget)

        self.vbox = QtGui.QVBoxLayout()
        self.vbox.setSpacing(15)

        self.accel = Plotter('Beschleunigung', [-20, 20], 3, ['g', 'r', 'y'])
        self.gyro = Plotter('Gyroskop', [-360, 360], 3, ['g', 'r', 'y'])
        self.parser = Parser()
        self.current_file = Testfile('')

        self.vbox.addWidget(self.accel)
        self.vbox.setAlignment(self.accel, QtCore.Qt.AlignTop)
        self.vbox.addWidget(self.gyro)
        self.vbox.setAlignment(self.gyro, QtCore.Qt.AlignTop)
        self.vbox.addStretch()

        self.widget.setLayout(self.vbox)

    def recalculate_width(self):
        # dynamische Anpassung der scrollArea Größe, damit der Graph schön dargestellt wird
        self.widget.setMinimumWidth(len(self.accel.data[0]) * 8 + 20)

    def recalculate_height(self):
        accel_min = min(self.current_file.min_values[3:6])
        accel_max = max(self.current_file.max_values[3:6])
        gyro_min = min(self.current_file.min_values[0:3])
        gyro_max = max(self.current_file.max_values[0:3])
        self.accel.set_height([accel_min, accel_max])
        self.gyro.set_height([gyro_min, gyro_max])

    def display(self, filename):
        testfile = self.parser.parse(filename)
        self.current_file = testfile

        self.accel.set_data(testfile.data[3:6])
        self.gyro.set_data(testfile.data[0:3])

        self.recalculate_width()
        # self.recalculate_height()

    def merge_files(self, directory_name):
        self.parser.merge_files(directory_name)

    def show_stats(self):
        message = QtGui.QMessageBox()
        message.addButton(message.Ok)
        message.setText(QtCore.QString(
            u'Statistik für Datei {0}\t\t\t\n Laufzeit:\t{1}\t\t\nGyroskop:\n    roll:\t{2}, {3}\n    pitch:\t{4}, {5}\n    yaw:\t{6}, {7}\nBeschleunigung:\n    x:\t{8}, {9}\n    y:\t{10}, {11}\n    z:\t{12}, {13}'.format(
                unicode(self.current_file.name), unicode(self.current_file.time),
                unicode(self.current_file.min_values[0]), unicode(self.current_file.max_values[0]),
                unicode(self.current_file.min_values[1]), unicode(self.current_file.max_values[1]),
                unicode(self.current_file.min_values[2]), unicode(self.current_file.max_values[2]),
                unicode(self.current_file.min_values[3]), unicode(self.current_file.max_values[3]),
                unicode(self.current_file.min_values[4]), unicode(self.current_file.max_values[4]),
                unicode(self.current_file.min_values[5]), unicode(self.current_file.max_values[5]))))
        message.setWindowTitle(QtCore.QString('Statistik'))
        message.exec_()
開發者ID:AndreaBittner,項目名稱:ue-ei,代碼行數:70,代碼來源:Presenter.py


注:本文中的Plotter.Plotter.set_data方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。