Esempio n. 1
0
    def __init__(self):
        if getattr(sys, 'frozen', False):
            #explicit import needed when frozen
            import QTKit

        from QTKit import QTCaptureDevice,QTMediaTypeVideo
        qt_cameras =  QTCaptureDevice.inputDevicesWithMediaType_(QTMediaTypeVideo)
        for src_id,q in enumerate(qt_cameras):
            uId =  q.uniqueID()
            name = q.localizedDisplayName().encode('utf-8')
            self.append(Cam(name,uId,src_id))
Esempio n. 2
0
    def __init__(self):
        if getattr(sys, 'frozen', False):
            #explicit import needed when frozen
            import QTKit

        from QTKit import QTCaptureDevice,QTMediaTypeVideo
        qt_cameras =  QTCaptureDevice.inputDevicesWithMediaType_(QTMediaTypeVideo)
        for src_id,q in enumerate(qt_cameras):
            uId =  q.uniqueID()
            name = q.localizedDisplayName().encode('utf-8')
            self.append(Cam(name,uId,src_id))
Esempio n. 3
0
'''
(*)~----------------------------------------------------------------------------------
 Pupil - eye tracking platform
 Copyright (C) 2012-2014  Pupil Labs

 Distributed under the terms of the CC BY-NC-SA License.
 License details are in the file license.txt, distributed as part of this software.
----------------------------------------------------------------------------------~(*)
'''

import sys, os
import objc
import QTKit
from QTKit import QTCaptureDevice, QTMediaTypeVideo
qt_cameras = QTCaptureDevice.inputDevicesWithMediaType_(QTMediaTypeVideo)
print qt_cameras
import numpy
import cv2
import glfw
import c_methods
import atb
import OpenGL
import uvc_capture
print "HI QTKIT"

# print glfw.glfwInit()
print "goodbye"
Esempio n. 4
0
'''
(*)~----------------------------------------------------------------------------------
 Pupil - eye tracking platform
 Copyright (C) 2012-2014  Pupil Labs

 Distributed under the terms of the CC BY-NC-SA License.
 License details are in the file license.txt, distributed as part of this software.
----------------------------------------------------------------------------------~(*)
'''

import sys,os
import objc
import QTKit
from QTKit import QTCaptureDevice,QTMediaTypeVideo
qt_cameras =  QTCaptureDevice.inputDevicesWithMediaType_(QTMediaTypeVideo)
print qt_cameras
import numpy
import cv2
import glfw
import c_methods
import atb
import OpenGL
import uvc_capture
print "HI QTKIT"

# print glfw.glfwInit()
print "goodbye"