Source code for plugins.Thread_inspection.help.help

import webbrowser
from PyQt5 import QtWidgets, QtGui
import os


[docs] def open_information_moildev(): # file = os.path.realpath('./plugins/Thread_inspection/help/index.html') # print(file) # webbrowser.open('file://' + file) webbrowser.open('https://github.com/MoilOrg/MoilApps-Plugins/wiki')
[docs] def about_us(): """ Showing prompt About us information (MOIL LAB). Returns: None. """ msgbox = QtWidgets.QMessageBox() msgbox.setWindowTitle("About Us") msgbox.setText( "MOIL \n\nOmnidirectional Imaging & Surveillance Lab\nMing Chi University of Technology\n") msgbox.setIconPixmap(QtGui.QPixmap('./images/moildev2.png')) msgbox.exec()
[docs] def help_moildev_apps(): msgbox = QtWidgets.QMessageBox() msgbox.setWindowTitle("Help !!") msgbox.setText( "Moildev-Apps\n\n" "Moildev-Apps is software to process fisheye " "image with the result panorama view and Anypoint" " view. \n\nThe panoramic view may present a horizontal" "view in a specific immersed environment to meet the" "common human visual perception, while the Anypoint" "view is an image that has been undistorted in a certain" "area according to the input coordinates." "\n\nMore reference about Moildev, contact us\n\n") msgbox.setIconPixmap(QtGui.QPixmap('images/moildev.png')) msgbox.exec()