view_with_band_pass_filter.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:tdoa 作者: xiongyihui 项目源码 文件源码
def main():
    from PySide import QtGui
    from bar_widget import BarWidget

    app = QtGui.QApplication(sys.argv)
    widget = BarWidget()
    widget.setWindowTitle('Direction Of Arrival')
    widget.show()

    doa = DOA()

    quit_event = threading.Event()
    thread = threading.Thread(target=doa.start, args=(quit_event, widget.setBars))
    thread.start()

    app.exec_()

    quit_event.set()
    thread.join()
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号