This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes.wintypes | |
import ctypes as C | |
_dsound_dll = C.windll.LoadLibrary("dsound.dll") | |
_DirectSoundEnumerateW = _dsound_dll.DirectSoundCaptureEnumerateW | |
_LPDSENUMCALLBACK = C.WINFUNCTYPE(C.wintypes.BOOL, | |
C.wintypes.LPVOID, | |
C.wintypes.LPCWSTR, | |
C.wintypes.LPCWSTR, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyglui import ui | |
import file_methods as fm | |
import player_methods as pm | |
from gaze_producer.gaze_producer_base import GazeProducerBase | |
from methods import denormalize | |
from player_methods import transparent_circle | |
class GazeFromRecordingWithOffsetCorrection(GazeProducerBase): |