Setup başka bilgisayarda çalışmıyor

Merhabalar, pyinstaller ile oluşturduğum konsollu ve konsolsuz exe’ler ve inno setup compiler ile oluşturduğum setup benim bilgisayarımda çalışıyor yalnız başka bilgisayarda çalışmıyor, yardımcı olursanız çok sevinirim.
Aldığım hata mesajı ve kullandığım modüller aşağıda mevcut.

import sys
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
import cv2
from pyModbusTCP.server import ModbusServer, DataBank
import socket
from time import sleep

local_ip = socket.gethostbyname(socket.gethostname())
server = ModbusServer(local_ip, 502, no_block=True)
server.start()
state = [0]
yy1 = 50
yy2 = 400
circle_y = 0
circle_x = 0
radius_1 = 0
class MainWindow(QWidget):
    def __init__(self):
        super(MainWindow, self).__init__()

        self.VBL = QVBoxLayout()

        self.FeedLabel = QLabel()
        self.VBL.addWidget(self.FeedLabel)

        self.CancelBTN = QPushButton("Cancel")
        self.CancelBTN.clicked.connect(self.CancelFeed)
        self.VBL.addWidget(self.CancelBTN)


        self.up1 = QPushButton("Up 1")
        self.up1.clicked.connect(self.Up1Feed)
        self.VBL.addWidget(self.up1)

        self.dwn1 = QPushButton("Down 1")
        self.dwn1.clicked.connect(self.Dwn1Feed)
        self.VBL.addWidget(self.dwn1)

        self.up2 = QPushButton("Up 2")
        self.up2.clicked.connect(self.Up2Feed)
        self.VBL.addWidget(self.up2)

        self.dwn2 = QPushButton("Down 2")
        self.dwn2.clicked.connect(self.Dwn2Feed)
        self.VBL.addWidget(self.dwn2)


        self.Worker1 = Worker1()

        self.Worker1.start()
        self.Worker1.ImageUpdate.connect(self.ImageUpdateSlot)
        self.setLayout(self.VBL)

    def ImageUpdateSlot(self, Image):
        self.FeedLabel.setPixmap(QPixmap.fromImage(Image))

    def CancelFeed(self):
        self.Worker1.stop()

    def Up1Feed(self):
        global yy1
        yy1 -= 10

    def Dwn1Feed(self):
        global yy1
        yy1 += 10

    def Up2Feed(self):
        global yy2
        yy2 -= 10

    def Dwn2Feed(self):
        global yy2
        yy2 += 10

class Worker1(QThread):
    ImageUpdate = pyqtSignal(QImage)
    def run(self):
        global yy1
        global yy2
        self.ThreadActive = True
        cap = cv2.VideoCapture('rtsp://admin:@192.168.1.48/554')
        while self.ThreadActive:
            _, frame = cap.read()
            gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
            blur = cv2.GaussianBlur(gray, (11, 11), 0)

            (minVal, maxVal, minLoc, maxLoc) = cv2.minMaxLoc(blur)

            hi, threshold = cv2.threshold(blur, maxVal-5, 255, cv2.THRESH_BINARY)
            thr = threshold.copy()

            cv2.resize(thr, (300, 300))
            edged = cv2.Canny(threshold, 50, 150)
            lightcontours, hierarchy = cv2.findContours(edged, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)

            circles = cv2.HoughCircles(threshold, cv2.HOUGH_GRADIENT, 1.0, 20,
                                       param1=10,
                                       param2=15,
                                       minRadius=5,
                                       maxRadius=200, )
            if len(lightcontours) and circles is not None:
                maxcontour = max(lightcontours, key=cv2.contourArea)
                if cv2.contourArea(maxcontour):
                    global circle_y
                    global circle_x
                    global radius_1
                    (x, final_y), radius = cv2.minEnclosingCircle(maxcontour)
                    circle_y = final_y
                    circle_x = x
                    radius_1 = radius
                    cv2.circle(frame, (int(x), int(final_y)), int(radius), (0, 255, 0), 4)
                    cv2.rectangle(frame, (int(x) - 5, int(final_y) - 5), (int(x) + 5, int(final_y) + 5), (0, 128, 255),
                                  -1)
                    cv2.putText(frame, "{},{}".format(int(x), int(final_y)), (20, 40), cv2.FONT_HERSHEY_COMPLEX, 1,
                                (0, 0, 255), 2, cv2.LINE_4,)
                    cv2.putText(frame, "%{}".format(self.PercentCalculate()), (400, 40), cv2.FONT_HERSHEY_COMPLEX, 1, (255, 0, 0), 2, cv2.LINE_4)
                    a = int(circle_x + radius)
                    b = int(circle_x - radius)
                    c = int(circle_y - radius)
                    cv2.line(frame, (a, c), (b, c), (0, 0, 255), 2)

            cv2.line(frame, (0, yy1), (640, yy1), (0, 0, 255), 2)
            cv2.line(frame, (0, yy2), (640, yy2), (0, 0, 255), 2)

            DataBank.set_words(0, [int(self.PercentCalculate())])
            DataBank.set_words(1, [int(yy1)])
            DataBank.set_words(2, [int(yy2)])

            Image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
            ConvertToQtFormat = QImage(Image.data, Image.shape[1], Image.shape[0], QImage.Format_RGB888)
            Pic = ConvertToQtFormat.scaled(640, 480, Qt.KeepAspectRatio)
            self.ImageUpdate.emit(Pic)

    def PercentCalculate(self):
        fark = yy2 - yy1
        cizgi_uzakligi = yy2 - circle_y+(radius_1)
        percent = 100*cizgi_uzakligi/fark
        return percent

    def stop(self):
        server.stop()
        self.ThreadActive = False
        self.quit()


if __name__ == "__main__":
    App = QApplication(sys.argv)
    Root = MainWindow()
    Root.show()
    sys.exit(App.exec())

oluşturudğun exe yi bana gönderir misin? safatevhid@gmail.com. rar yapmayı unutma lütfen.

1 Beğeni

ilginçtir pyinstaller dahil modülleri de paketleyip alıyor fakat exe halini çalıştırınca pyqt5 kütüphanesini dahil etmemiş.

1 Beğeni

Mail ile gönderdim, yanıtınızı bekliyorum.