91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用PyQt5怎么實現一個數據標注工具

發布時間:2021-04-20 17:03:21 來源:億速云 閱讀:388 作者:Leah 欄目:開發技術

使用PyQt5怎么實現一個數據標注工具?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

from PyQt5.QtWidgets import QApplication,QPushButton,QLabel,QMainWindow
from PyQt5.QtGui import QFont,QPixmap
import sys,os
import shutil
 
def copyfile(srcfile, dstfile):#用來復制文件,源文件會保留
 
  if not os.path.isfile(srcfile):
    print("%s not exist!" % srcfile)
  else:
    f_path, f_name = os.path.split(dstfile) # 分離文件名和路徑
    if not os.path.exists(f_path):
      os.makedirs(f_path) # 創建路徑
    shutil.copyfile(srcfile, dstfile) # 復制文件
    print("copy %s -> %s" % (srcfile, dstfile))
class mainForm(QMainWindow):
  def __init__(self):
    super(mainForm, self).__init__()
 
    self.img_path="faces/" #文件夾和py文件要再同一個目錄下面
    self.img_list=os.listdir(self.img_path) #獲取目錄下的所有文件
    self.idx=0#可以改這里,選擇程序運行的時候第一個顯示的圖片是哪一個
 
    self.initUI()
    self.show()
  def initUI(self):
    font=QFont()
    font.setPixelSize(20)#新建一個字體控件
 
    self.setWindowTitle("label_me")#設置窗體的標題
    self.setGeometry(0,0,900,600)#位置和大小
 
    button_list=["Chandler","Phoebe","Joey","Monica","Rachel","Ross","Others","Thing",]#這里是顯示的按鈕們,也是可能的類別數
 
    for idx, label_name in enumerate(button_list):
 
      button=QPushButton(label_name,self)
      button.move(idx*110+20,500)
      button.setFont(font)
      button.setFixedHeight(35)
 
      button.clicked.connect(self.classify)#動態控件綁定同一個事件,根據事件的sender判斷是哪個按鈕按下
 
    self.lbl_list=[]#存放顯示圖片的label 的list
    for i in range(self.get_remainder()):
 
      self.pix = QPixmap(self.img_path+self.img_list[self.idx+i])
      label_img = QLabel(self)
      label_img.setGeometry(360*i+10, 400-100*(3-i)+40, 100*(3-i)+40,100*(3-i)+40)
      label_img.setStyleSheet("border:2px solid red")
      label_img.setPixmap(self.pix)#設置label控件要顯示的圖片
      label_img.setScaledContents(True)
      self.lbl_list.append(label_img)
 
  def get_remainder(self):#打算是要顯示3個label圖片,如果是到了最后,顯示不了那么多了。
    r=len(self.img_list)-self.idx
    if r>3:
      r=3
    return r
  def clear_lbls(self):#最后的時候會用到,不顯示某些label
    for i in range(len(self.lbl_list)):
      self.lbl_list[i].hide()
 
  def classify(self):
 
    sender = self.sender()
    dir_path=sender.text()+"/"#獲取按鈕的text屬性
 
    current_img_path=self.img_list[self.idx]#獲取剛剛被分類的圖片的路徑
    copyfile(self.img_path+current_img_path , dir_path+current_img_path)
    self.idx +=1#下一個圖片
    img_full_path = [self.img_path + self.img_list[self.idx + i]  for i in range(self.get_remainder())]
 
    self.clear_lbls()
    for i in range(self.get_remainder()):
 
      pix = QPixmap(img_full_path[i])
      self.lbl_list[i].setPixmap(pix)
      self.lbl_list[i].show()
    self.setWindowTitle("當前是第 %d 個圖片"%self.idx)
 
app=QApplication(sys.argv)
f=mainForm()
sys.exit(app.exec())

關于使用PyQt5怎么實現一個數據標注工具問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白玉县| 金溪县| 大荔县| 双峰县| 湘潭县| 三江| 嘉祥县| 海林市| 栾川县| 游戏| 泰宁县| 大埔县| 连山| 明水县| 固始县| 湖南省| 湄潭县| 陵川县| 岢岚县| 清徐县| 和顺县| 洛南县| 吐鲁番市| 乐都县| 定结县| 阿克陶县| 定兴县| 彰化县| 罗平县| 余干县| 广灵县| 简阳市| 闵行区| 三原县| 罗山县| 武威市| 光泽县| 柳江县| 商都县| 望江县| 濮阳县|