位置: IT常识 - 正文

睿智的目标检测——PyQt5搭建目标检测界面(睿智目标检测yolov8)

编辑:rootadmin
睿智的目标检测——PyQt5搭建目标检测界面 睿智的目标检测——PyQt5搭建目标检测界面学习前言

推荐整理分享睿智的目标检测——PyQt5搭建目标检测界面(睿智目标检测yolov8),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:睿智的目标检测11,目标检测怎么学,睿智的目标检测61,睿智的目标检测环境搭建,目标检测是,睿智目标检测yolov8,睿智目标检测yolov8,睿智目标检测yolov8,内容如对您有帮助,希望把文章链接给更多的朋友!

基于B导开源的YoloV4-Pytorch源码开发了戴口罩人脸检测系统(21年完成的本科毕设,较为老旧,可自行替换为最新的目标检测算法)。

源码下载

https://github.com/Egrt/YOLO_PyQt5 喜欢的可以点个star噢。

支持功能支持读取本地图片支持读取本地视频支持打开摄像头实时检测支持多线程,防止卡顿支持检测到人脸未佩戴口罩时记录,并语音警告界面展示

PyQt5

PyQt5是Python语言中一款流行的GUI(图形用户界面)开发框架,基于Qt GUI应用程序开发框架,提供了一个强大的工具集,用于创建各种桌面应用程序。PyQt5可以用于开发桌面应用程序、Web应用程序和移动应用程序,具有良好的跨平台性和丰富的功能。

信号与槽

信号和槽是PyQt5中一个重要的概念,是用于组织和管理GUI元素之间交互的机制。信号是GUI元素发出的事件或动作,槽是处理信号的函数。当信号发生时,与之相关联的槽将被自动调用。

下面是一个简单的示例代码,演示如何在PyQt5中使用信号和槽。这个示例创建了一个窗口,其中包含一个按钮和一个标签。当用户单击按钮时,标签的文本将会改变:

import sysfrom PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QLabelclass MyWindow(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.setGeometry(300, 300, 300, 200) self.setWindowTitle('Signal and Slot') self.button = QPushButton('Click', self) self.button.move(100, 100) self.button.clicked.connect(self.changeText) self.label = QLabel('Hello World', self) self.label.move(110, 60) def changeText(self): self.label.setText('Button Clicked')if __name__ == '__main__': app = QApplication(sys.argv) window = MyWindow() window.show() sys.exit(app.exec_())睿智的目标检测——PyQt5搭建目标检测界面(睿智目标检测yolov8)

在这个示例代码中,我们创建了一个名为MyWindow的窗口类,该类继承自QWidget。在MyWindow的构造函数中,我们创建了一个按钮和一个标签,并使用clicked信号将按钮的单击事件连接到changeText槽函数。当按钮被单击时,changeText槽函数将会被调用,该函数会改变标签的文本。

运行代码后,可以看到窗口上有一个按钮和一个标签,单击按钮后标签的文本会改变为“Button Clicked”。这个示例演示了如何使用PyQt5中的信号和槽来实现交互式GUI应用程序。

功能实现界面设计

根据任务需求,可以将界面分为四部分:

最上方放置按钮来实现选择读取图片、视频、开启摄像头实时检测。左侧放置目录控件,浏览本地文件。中间显示YOLO处理后的图片。在处理视频或实时读取摄像头检测时,如果多帧连续识别到不戴口罩人脸将其记录并发出语音警告。

因此编写代码如下:

class MyApp(QMainWindow): def __init__(self): super(MyApp, self).__init__() self.cap = cv2.VideoCapture() self.CAM_NUM = 0 self.thread_status = False # 判断识别线程是否开启 self.tool_bar = self.addToolBar('工具栏') self.action_right_rotate = QAction( QIcon("icons/右旋转.png"), "向右旋转90", self) self.action_left_rotate = QAction( QIcon("icons/左旋转.png"), "向左旋转90°", self) self.action_opencam = QAction(QIcon("icons/摄像头.png"), "开启摄像头", self) self.action_video = QAction(QIcon("icons/video.png"), "加载视频", self) self.action_image = QAction(QIcon("icons/图片.png"), "加载图片", self) self.action_right_rotate.triggered.connect(self.right_rotate) self.action_left_rotate.triggered.connect(self.left_rotate) self.action_opencam.triggered.connect(self.opencam) self.action_video.triggered.connect(self.openvideo) self.action_image.triggered.connect(self.openimage) self.tool_bar.addActions((self.action_left_rotate, self.action_right_rotate, self.action_opencam, self.action_video, self.action_image)) self.stackedWidget = StackedWidget(self) self.fileSystemTreeView = FileSystemTreeView(self) self.graphicsView = GraphicsView(self) self.dock_file = QDockWidget(self) self.dock_file.setWidget(self.fileSystemTreeView) self.dock_file.setTitleBarWidget(QLabel('目录')) self.dock_file.setFeatures(QDockWidget.NoDockWidgetFeatures) self.dock_attr = QDockWidget(self) self.dock_attr.setWidget(self.stackedWidget) self.dock_attr.setTitleBarWidget(QLabel('上报数据')) self.dock_attr.setFeatures(QDockWidget.NoDockWidgetFeatures) self.setCentralWidget(self.graphicsView) self.addDockWidget(Qt.LeftDockWidgetArea, self.dock_file) self.addDockWidget(Qt.RightDockWidgetArea, self.dock_attr) self.setWindowTitle('口罩佩戴检测') self.setWindowIcon(QIcon('icons/mask.png')) self.src_img = None self.cur_img = None槽函数

在初始化中配置窗口的界面并使用connect连接信号与槽函数,当信号发生时,与之相关联的槽将被自动调用。控制打开图片、视频与本地摄像头的槽函数分别为:

def openvideo(self): print(self.thread_status) if self.thread_status == False: fileName, filetype = QFileDialog.getOpenFileName( self, "选择视频", "D:/", "*.mp4;;*.flv;;All Files(*)") flag = self.cap.open(fileName) if flag == False: msg = QtWidgets.QMessageBox.warning(self, u"警告", u"请选择视频文件", buttons=QtWidgets.QMessageBox.Ok, defaultButton=QtWidgets.QMessageBox.Ok) else: self.detectThread = DetectThread(fileName) self.detectThread.Send_signal.connect(self.Display) self.detectThread.start() self.action_video.setText('关闭视频') self.thread_status = True elif self.thread_status == True: self.detectThread.terminate() if self.cap.isOpened(): self.cap.release() self.action_video.setText('打开视频') self.thread_status = Falsedef openimage(self): if self.thread_status == False: fileName, filetype = QFileDialog.getOpenFileName( self, "选择图片", "D:/", "*.jpg;;*.png;;All Files(*)") if fileName != '': src_img = Image.open(fileName) r_image, predicted_class = yolo.detect_image(src_img) r_image = np.array(r_image) showImage = QtGui.QImage( r_image.data, r_image.shape[1], r_image.shape[0], QtGui.QImage.Format_RGB888) self.graphicsView.set_image(QtGui.QPixmap.fromImage(showImage))def opencam(self): if self.thread_status == False: flag = self.cap.open(self.CAM_NUM) if flag == False: msg = QtWidgets.QMessageBox.warning(self, u"警告", u"请检测相机与电脑是否连接正确", buttons=QtWidgets.QMessageBox.Ok, defaultButton=QtWidgets.QMessageBox.Ok) else: self.detectThread = DetectThread(self.CAM_NUM) self.detectThread.Send_signal.connect(self.Display) self.detectThread.start() self.action_video.setText('关闭视频') self.thread_status = True else: self.detectThread.terminate() if self.cap.isOpened(): self.cap.release() self.action_video.setText('打开视频') self.thread_status = False多线程

在读取视频文件或摄像头时,为避免界面卡顿,使用了多线程进行处理,并在结束处理视频文件时需要关闭线程防止系统卡死,且在关闭摄像头时还需要使用self.cap.release()对摄像头进行释放。

在多线程处理连续帧时,采用了Qt自带的多线程库QThread:

class DetectThread(QThread): Send_signal = pyqtSignal(np.ndarray, int) def __init__(self, fileName): super(DetectThread, self).__init__() self.capture = cv2.VideoCapture(fileName) self.count = 0 self.warn = False # 是否发送警告信号 def run(self): ret, self.frame = self.capture.read() while ret: ret, self.frame = self.capture.read() self.detectCall() def detectCall(self): fps = 0.0 t1 = time.time() # 读取某一帧 frame = self.frame # 格式转变,BGRtoRGB frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) # 转变成Image frame = Image.fromarray(np.uint8(frame)) # 进行检测 frame_new, predicted_class = yolo.detect_image(frame) frame = np.array(frame_new) if predicted_class == "face": self.count = self.count+1 else: self.count = 0 # RGBtoBGR满足opencv显示格式 frame = cv2.cvtColor(frame, cv2.COLOR_RGB2BGR) fps = (fps + (1./(time.time()-t1))) / 2 print("fps= %.2f" % (fps)) frame = cv2.putText(frame, "fps= %.2f" % ( fps), (0, 40), cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2) if self.count > 30: self.count = 0 self.warn = True else: self.warn = False # 发送pyqt信号 self.Send_signal.emit(frame, self.warn)信息记录

如果连续30帧识别到未佩戴口罩的人脸时,将发送信号在右侧列表中显示,并记录当前帧画面:

def add_item(self, image): # 总Widget wight = QWidget() # 总体横向布局 layout_main = QHBoxLayout() map_l = QLabel() # 图片显示 map_l.setFixedSize(60, 40) map_l.setPixmap(image.scaled(60, 40)) # 右边的纵向布局 layout_right = QVBoxLayout() # 右下的的横向布局 layout_right_down = QHBoxLayout() # 右下的横向布局 layout_right_down.addWidget( QLabel(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))) # 按照从左到右, 从上到下布局添加 layout_main.addWidget(map_l) # 最左边的图片 layout_right.addWidget(QLabel('警告!检测到未佩戴口罩')) # 右边的纵向布局 layout_right.addLayout(layout_right_down) # 右下角横向布局 layout_main.addLayout(layout_right) # 右边的布局 wight.setLayout(layout_main) # 布局给wight item = QListWidgetItem() # 创建QListWidgetItem对象 item.setSizeHint(QSize(300, 80)) # 设置QListWidgetItem大小 self.stackedWidget.addItem(item) # 添加item self.stackedWidget.setItemWidget(item, wight) # 为item设置widget关闭系统

在关闭系统时,需要确保关闭了多线程,且关闭了已经打开的摄像头,否则在退出时也将造成卡顿:

def Display(self, frame, warn): im = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) showImage = QtGui.QImage( im.data, im.shape[1], im.shape[0], QtGui.QImage.Format_RGB888) self.graphicsView.set_image(QtGui.QPixmap.fromImage(showImage))def closeEvent(self, event): ok = QtWidgets.QPushButton() cacel = QtWidgets.QPushButton() msg = QtWidgets.QMessageBox( QtWidgets.QMessageBox.Warning, u"关闭", u"确定退出?") msg.addButton(ok, QtWidgets.QMessageBox.ActionRole) msg.addButton(cacel, QtWidgets.QMessageBox.RejectRole) ok.setText(u'确定') cacel.setText(u'取消') if msg.exec_() == QtWidgets.QMessageBox.RejectRole: event.ignore() else: if self.thread_status == True: self.detectThread.terminate() if self.cap.isOpened(): self.cap.release() event.accept()

最终完整的代码如下:

import ctypesimport sysimport timeimport cv2import numpy as npimport qdarkstylefrom PIL import Imagefrom PyQt5 import QtCore, QtGui, QtWidgetsfrom PyQt5.Qt import QThreadfrom PyQt5.QtCore import *from PyQt5.QtGui import *from PyQt5.QtWidgets import *from custom.graphicsView import GraphicsViewfrom custom.listWidgets import *from custom.stackedWidget import *from custom.treeView import FileSystemTreeViewfrom yolo import YOLOctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("myappid")# 多线程实时检测class DetectThread(QThread): Send_signal = pyqtSignal(np.ndarray, int) def __init__(self, fileName): super(DetectThread, self).__init__() self.capture = cv2.VideoCapture(fileName) self.count = 0 self.warn = False # 是否发送警告信号 def run(self): ret, self.frame = self.capture.read() while ret: ret, self.frame = self.capture.read() self.detectCall() def detectCall(self): fps = 0.0 t1 = time.time() # 读取某一帧 frame = self.frame # 格式转变,BGRtoRGB frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) # 转变成Image frame = Image.fromarray(np.uint8(frame)) # 进行检测 frame_new, predicted_class = yolo.detect_image(frame) frame = np.array(frame_new) if predicted_class == "face": self.count = self.count+1 else: self.count = 0 # RGBtoBGR满足opencv显示格式 frame = cv2.cvtColor(frame, cv2.COLOR_RGB2BGR) fps = (fps + (1./(time.time()-t1))) / 2 print("fps= %.2f" % (fps)) frame = cv2.putText(frame, "fps= %.2f" % ( fps), (0, 40), cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2) if self.count > 30: self.count = 0 self.warn = True else: self.warn = False # 发送pyqt信号 self.Send_signal.emit(frame, self.warn)class MyApp(QMainWindow): def __init__(self): super(MyApp, self).__init__() self.cap = cv2.VideoCapture() self.CAM_NUM = 0 self.thread_status = False # 判断识别线程是否开启 self.tool_bar = self.addToolBar('工具栏') self.action_right_rotate = QAction( QIcon("icons/右旋转.png"), "向右旋转90", self) self.action_left_rotate = QAction( QIcon("icons/左旋转.png"), "向左旋转90°", self) self.action_opencam = QAction(QIcon("icons/摄像头.png"), "开启摄像头", self) self.action_video = QAction(QIcon("icons/video.png"), "加载视频", self) self.action_image = QAction(QIcon("icons/图片.png"), "加载图片", self) self.action_right_rotate.triggered.connect(self.right_rotate) self.action_left_rotate.triggered.connect(self.left_rotate) self.action_opencam.triggered.connect(self.opencam) self.action_video.triggered.connect(self.openvideo) self.action_image.triggered.connect(self.openimage) self.tool_bar.addActions((self.action_left_rotate, self.action_right_rotate, self.action_opencam, self.action_video, self.action_image)) self.stackedWidget = StackedWidget(self) self.fileSystemTreeView = FileSystemTreeView(self) self.graphicsView = GraphicsView(self) self.dock_file = QDockWidget(self) self.dock_file.setWidget(self.fileSystemTreeView) self.dock_file.setTitleBarWidget(QLabel('目录')) self.dock_file.setFeatures(QDockWidget.NoDockWidgetFeatures) self.dock_attr = QDockWidget(self) self.dock_attr.setWidget(self.stackedWidget) self.dock_attr.setTitleBarWidget(QLabel('上报数据')) self.dock_attr.setFeatures(QDockWidget.NoDockWidgetFeatures) self.setCentralWidget(self.graphicsView) self.addDockWidget(Qt.LeftDockWidgetArea, self.dock_file) self.addDockWidget(Qt.RightDockWidgetArea, self.dock_attr) self.setWindowTitle('口罩佩戴检测') self.setWindowIcon(QIcon('icons/mask.png')) self.src_img = None self.cur_img = None def update_image(self): if self.src_img is None: return img = self.process_image() self.cur_img = img self.graphicsView.update_image(img) def change_image(self, img): self.src_img = img img = self.process_image() self.cur_img = img self.graphicsView.change_image(img) def process_image(self): img = self.src_img.copy() for i in range(self.useListWidget.count()): img = self.useListWidget.item(i)(img) return img def right_rotate(self): self.graphicsView.rotate(90) def left_rotate(self): self.graphicsView.rotate(-90) def add_item(self, image): # 总Widget wight = QWidget() # 总体横向布局 layout_main = QHBoxLayout() map_l = QLabel() # 图片显示 map_l.setFixedSize(60, 40) map_l.setPixmap(image.scaled(60, 40)) # 右边的纵向布局 layout_right = QVBoxLayout() # 右下的的横向布局 layout_right_down = QHBoxLayout() # 右下的横向布局 layout_right_down.addWidget( QLabel(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))) # 按照从左到右, 从上到下布局添加 layout_main.addWidget(map_l) # 最左边的图片 layout_right.addWidget(QLabel('警告!检测到未佩戴口罩')) # 右边的纵向布局 layout_right.addLayout(layout_right_down) # 右下角横向布局 layout_main.addLayout(layout_right) # 右边的布局 wight.setLayout(layout_main) # 布局给wight item = QListWidgetItem() # 创建QListWidgetItem对象 item.setSizeHint(QSize(300, 80)) # 设置QListWidgetItem大小 self.stackedWidget.addItem(item) # 添加item self.stackedWidget.setItemWidget(item, wight) # 为item设置widget def openvideo(self): print(self.thread_status) if self.thread_status == False: fileName, filetype = QFileDialog.getOpenFileName( self, "选择视频", "D:/", "*.mp4;;*.flv;;All Files(*)") flag = self.cap.open(fileName) if flag == False: msg = QtWidgets.QMessageBox.warning(self, u"警告", u"请选择视频文件", buttons=QtWidgets.QMessageBox.Ok, defaultButton=QtWidgets.QMessageBox.Ok) else: self.detectThread = DetectThread(fileName) self.detectThread.Send_signal.connect(self.Display) self.detectThread.start() self.action_video.setText('关闭视频') self.thread_status = True elif self.thread_status == True: self.detectThread.terminate() if self.cap.isOpened(): self.cap.release() self.action_video.setText('打开视频') self.thread_status = False def openimage(self): if self.thread_status == False: fileName, filetype = QFileDialog.getOpenFileName( self, "选择图片", "D:/", "*.jpg;;*.png;;All Files(*)") if fileName != '': src_img = Image.open(fileName) r_image, predicted_class = yolo.detect_image(src_img) r_image = np.array(r_image) showImage = QtGui.QImage( r_image.data, r_image.shape[1], r_image.shape[0], QtGui.QImage.Format_RGB888) self.graphicsView.set_image(QtGui.QPixmap.fromImage(showImage)) def opencam(self): if self.thread_status == False: flag = self.cap.open(self.CAM_NUM) if flag == False: msg = QtWidgets.QMessageBox.warning(self, u"警告", u"请检测相机与电脑是否连接正确", buttons=QtWidgets.QMessageBox.Ok, defaultButton=QtWidgets.QMessageBox.Ok) else: self.detectThread = DetectThread(self.CAM_NUM) self.detectThread.Send_signal.connect(self.Display) self.detectThread.start() self.action_video.setText('关闭视频') self.thread_status = True else: self.detectThread.terminate() if self.cap.isOpened(): self.cap.release() self.action_video.setText('打开视频') self.thread_status = False def Display(self, frame, warn): im = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) showImage = QtGui.QImage( im.data, im.shape[1], im.shape[0], QtGui.QImage.Format_RGB888) self.graphicsView.set_image(QtGui.QPixmap.fromImage(showImage)) def closeEvent(self, event): ok = QtWidgets.QPushButton() cacel = QtWidgets.QPushButton() msg = QtWidgets.QMessageBox( QtWidgets.QMessageBox.Warning, u"关闭", u"确定退出?") msg.addButton(ok, QtWidgets.QMessageBox.ActionRole) msg.addButton(cacel, QtWidgets.QMessageBox.RejectRole) ok.setText(u'确定') cacel.setText(u'取消') if msg.exec_() == QtWidgets.QMessageBox.RejectRole: event.ignore() else: if self.thread_status == True: self.detectThread.terminate() if self.cap.isOpened(): self.cap.release() event.accept()if __name__ == "__main__": # 初始化yolo模型 yolo = YOLO() app = QApplication(sys.argv) app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5()) window = MyApp() window.show() sys.exit(app.exec_())
本文链接地址:https://www.jiuchutong.com/zhishi/298860.html 转载请保留说明!

上一篇:Java使用WebStocket实现前后端互发消息(java使用循环结构输出九九乘法表)

下一篇:vue如何定义:全局变量、全局方法(vue3定义全局变量)

  • 两台iphone怎么同步备忘录(两台iPhone怎么同步微信记录)

    两台iphone怎么同步备忘录(两台iPhone怎么同步微信记录)

  • 图片文字怎么转换成word(图片文字怎么转换成excel文档)

    图片文字怎么转换成word(图片文字怎么转换成excel文档)

  • 手机分身删除还能恢复(手机分身删了能找回吗?)

    手机分身删除还能恢复(手机分身删了能找回吗?)

  • 雄迈摄像头恢复出厂设置(雄迈摄像头恢复出厂设置后还是原来)

    雄迈摄像头恢复出厂设置(雄迈摄像头恢复出厂设置后还是原来)

  • 下雨打雷的时候手机可以充电吗(下雨打雷的时候可以打电话吗)

    下雨打雷的时候手机可以充电吗(下雨打雷的时候可以打电话吗)

  • 微信好友标签怎么删除(微信好友标签怎么删除不了)

    微信好友标签怎么删除(微信好友标签怎么删除不了)

  • 微投票是什么意思(微投票活动多少钱一票)

    微投票是什么意思(微投票活动多少钱一票)

  • 华为freebuds3充电要多久(华为freebuds3充电指示灯绿色)

    华为freebuds3充电要多久(华为freebuds3充电指示灯绿色)

  • 登录别人淘宝会挤掉么(登录别人淘宝账户会有提示吗)

    登录别人淘宝会挤掉么(登录别人淘宝账户会有提示吗)

  • 电池分为哪三大类(电池分几大类)

    电池分为哪三大类(电池分几大类)

  • 11录屏怎么设置(录屏怎么设置可以看到密码)

    11录屏怎么设置(录屏怎么设置可以看到密码)

  • 赛扬g4930处理器相当于i几(赛扬G4930处理器怎么样)

    赛扬g4930处理器相当于i几(赛扬G4930处理器怎么样)

  • 定时开关怎么接线(定时开关怎么接接触器线)

    定时开关怎么接线(定时开关怎么接接触器线)

  • 手机能同时连接两个蓝牙吗(手机可以一起连接两个蓝牙吗)

    手机能同时连接两个蓝牙吗(手机可以一起连接两个蓝牙吗)

  • qq删除好友再加回来聊天记录还在吗(QQ删除好友再加回来需要验证吗)

    qq删除好友再加回来聊天记录还在吗(QQ删除好友再加回来需要验证吗)

  • 交流电压和直流电压的区别(交流电压和直流电压的符号)

    交流电压和直流电压的区别(交流电压和直流电压的符号)

  • word中怎么设置参考文献(word中怎么设置首字下沉)

    word中怎么设置参考文献(word中怎么设置首字下沉)

  • 怎么解除qq私密说说(怎么解除QQ私密说说)

    怎么解除qq私密说说(怎么解除QQ私密说说)

  • pdsch是什么信道(pdcch信道共有多少种dci格式)

    pdsch是什么信道(pdcch信道共有多少种dci格式)

  • 无线打印机wifi设置(无线打印机wifi换了密码)

    无线打印机wifi设置(无线打印机wifi换了密码)

  • 便签怎么用(异形便签怎么用)

    便签怎么用(异形便签怎么用)

  • 苹果图虫怎么删除视频(图虫作品删除在哪里)

    苹果图虫怎么删除视频(图虫作品删除在哪里)

  • gtx1050是什么意思

    gtx1050是什么意思

  • Kali Linux桌面外观样式怎么更换? kali外观优化技巧(kali linux安装kde桌面)

    Kali Linux桌面外观样式怎么更换? kali外观优化技巧(kali linux安装kde桌面)

  • 合宙AIR32F103CBT6刷回CMSIS-DAP固件和DAP升级固件以及刷ST-LINK V2-1固件方法(合宙air32f103 stlink)

    合宙AIR32F103CBT6刷回CMSIS-DAP固件和DAP升级固件以及刷ST-LINK V2-1固件方法(合宙air32f103 stlink)

  • 公司申报个税流程
  • 辞退补偿金按照什么工资算
  • 用房租入股
  • 税收分类编码不可用是什么原因
  • 建筑业营改增的主要内容
  • 固定资产的维护费计入什么科目
  • 前期差错更正会引起所有者权益总额变动吗
  • 固定资产盘亏是营业外支出吗
  • 负数发票作废了对原来的正数发票有什么影响
  • 公允价值变动税务处理
  • 营改增后接受实物投资是否需要缴纳增值税?
  • 3%的增值税专用发票可以退税吗可以抵扣吗
  • 民间非营利组织会计制度
  • 开票资料没有电话号码可以写法人名字吗
  • 注册公司之后需要交社保吗
  • 网络工程完工后干什么
  • 民间非营利组织会计制度及操作实务
  • 办公用品普通发票的会计分录
  • 本月不抵扣的发票不入帐吗
  • 为什么要结转成本差异
  • 为什么贷款利息变高了
  • 本月做账下月认证的进项怎么做账?
  • 公司收到银行存款利息收入会计分录
  • 事业单位收受礼品怎么处理
  • 药品推广服务费怎么开票
  • 未知格式或损坏文件怎么办
  • 做事应该怎么做
  • 物业管理费发票图片
  • 获取vue实例
  • 预收账款通俗易懂的说法
  • 拆迁以后
  • 落日时光
  • smarty模板注入
  • 爱丽丝小镇在哪
  • 采购员出差预借差旅费300元
  • Programming tutorials and source code examples
  • 销售商品怎么做好宣传
  • 账面价值是历史价值吗
  • 发票报销是个人还是单位
  • 结转个人承担的社保费分录
  • 海关进口增值税专用缴款书如何抵扣
  • 企业出租无形资产使用权取得的收入应计入
  • 企业会计准则每股收益
  • 会计六大类会计科目
  • 发票上盖成财务章了怎么办
  • 硬盘录像机开发票属于哪一类
  • 行政单位基建管理办法
  • 设计费用计入什么会计科目
  • 商品没入库直接发货
  • 允许税前扣除的税金及附加包括哪些
  • 滴滴发票抬头是什么意思
  • sql语句行转列
  • distinct 多个
  • mysql报错1091
  • win8怎么没有我的电脑
  • ubuntu16.04创建用户
  • 如何解决脑供血不足
  • putty如何登录linux
  • 系统win8
  • 如何打开mac系统终端
  • rpm包安装位置
  • win8的显示设置
  • win10预览版选哪个
  • linux限制用户cpu使用
  • Formatting Long Lines 格式化多行字符的shell脚本
  • 批处理命令教程 pdf
  • python中布尔运算
  • nodejs oom
  • node.js使用方法
  • 在批改中,可以使用x表示错误
  • jquery动态添加div
  • jquery切换css样式
  • javaScript parseInt字符转化为数字函数使用小结
  • js中splice方法
  • 简述使用jquery实现表单验证的流程
  • 北京户籍网官方网站
  • 个人所得税对什么征税
  • 锂电池税收优惠政策
  • 建筑业按多少税收
  • 注销的卡补回来还能恢复以前的套餐吗
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设