Questions tagged [ueye]

33 questions
0
votes
1 answer

pyueye set the pixel clock

I am trying to set the pixel clock using pyueye. to get it I do: from ctypes import * from pyueye import ueye PIXELCLOCK_CMD_GET=5 pc = c_int() ueye.is_PixelClock(self._hcam, PIXELCLOCK_CMD_GET, byref(pc), sizeof(pc)) and it works to set it I…
p.deman
  • 584
  • 2
  • 10
  • 24
0
votes
1 answer

How can I use OpenCV to capture video stream of ueye cameras?

I'm used to work with logitech cameras in OpenCV. Appearently, VideoCapture() function takes as argument the number of the camera device in /dev/video. However, when using Ueye cameras, the entry for the device is /dev/ueye and not /dev/video* . Is…
user6099747
  • 35
  • 1
  • 1
  • 6
0
votes
2 answers

Making snapshot with IDS uEye webcam - black image

I have an IDS UEye webcam and want to make a snapshot via the uEyeDotNet.dll (version 1.6.4.2). At the moment I'm using this piece of code. var camera = new…
Mighty Badaboom
  • 6,067
  • 5
  • 34
  • 51
1 2
3