Ask Your Question

Cyborg21's profile - activity

2015-06-29 03:52:26 -0600 received badge  Necromancer (source)
2015-06-29 03:43:22 -0600 answered a question Raspberry Pi Opencv 64x64 pixels

Hi, I fixed this problem with installation of v4l drivers instead of uv4l drivers. With OpenCV2, my simple source code is :

import cv2

capture = cv2.VideoCapture(0) // For camera in dev/video0 capture.set(3, 640) // ID 3 for width capture.set(4,480) // ID4 for height

while True: ret, im = capture.read() cv2.imshow("Picamera", im)

Cyb