python opencv cv2 imshow threading 多線程


除了線程同步,還需要注意的是「窗口處理」要放在主線程

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys
import threading
from time import sleep
from queue import Queue
import cv2
import numpy as np
from functools import reduce

print(sys.version)

q = Queue()

def run(n):
    thread = threading.current_thread()
    thread.setName('thread-fuck')
    print('tid is: {0}'.format(thread.ident))
    print('thread name is: {0}'.format(thread.getName()))

    for i in range(100):
        img = np.random.randint(0,255,(200,300)).astype(np.uint8)
        q.put(img)
        sleep(0.1)

    q.put(0)


if __name__ == '__main__':
    thread = threading.Thread(target=run, args=(6,))
    thread.start()

    while True:
        try:
            item = q.get(block=False)
        except Exception as e:
            keycode = cv2.waitKey(20)
            if keycode & 0xFF == ord('q'):
                break
            continue

        if type(item) == int:
            break

        if type(item) == type(0):
            break
        cv2.imshow('fuck', item)

    thread.join()

    cv2.waitKey(0)
    cv2.destroyAllWindows()
    print('done!')


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM