import pygame
import types
+import kinect.pygamedisplay as kinect
+
import minwii.events as events
from minwii.log import eventLogger
from minwii.eventutils import event_handler, EventDispatcher, EventHandlerMixin
self._initColumns()
self._running = False
self.draw(pygame.display.get_surface())
- self._initCursor()
+ self._initCursor()
+
+ self.kinectRgb = kinect.RGB()
+ self.kinectRgbSur = pygame.Surface((640, 480))
def _initRects(self) :
""" création des espaces réservés pour
EventDispatcher.dispatchEvents()
dirty = self.draw(pygame.display.get_surface())
pygame.display.update(dirty)
+
+ self.kinectRgb.update()
+ rgbImg = self.kinectRgb.capture()
+ self.kinectRgbSur.blit(rgbImg, (0, 0))
+ screen = pygame.display.get_surface()
+ screen.blit(pygame.transform.flip(self.kinectRgbSur, True, False), (0, 0))
+ pygame.display.flip()
+
clock.tick(FRAMERATE)
def stop(self) :