Questions tagged [gige-sdk]

27 questions
7
votes
3 answers

How to Acquire Images with GigE Cameras on Linux with Plain C

Is there a library that I can use for acquiring images from a GigE camera with plain C on Linux ? To be more specific I have a Basler GigE camera and the pylon software installed. There is also sample code in C++. But I want and need to use C (in my…
Bitterblue
  • 9,526
  • 12
  • 71
  • 114
3
votes
1 answer

where in the memory of PS block of Zynq the captured image data is stored of Zynq Processor ? So that I can take it to PL block using AXI interface

I have a GigE camera. I am using Zynq board. Now using linux programming I program the PS part of Zynq processor and capture the video and Now I have imagebuffer variable which has the captured Image data. I want to take the data from PS to PL part…
user3217310
  • 134
  • 1
  • 16
2
votes
2 answers

Using ImageMagick to efficiently stitch together a line scan image

I’m looking for alternatives for line scan cameras to be used in sports timing, or rather in the part where placing needs to be figured out. I found that common industrial cameras can readily match the speed of commercial camera solutions at >1000…
rkantos
  • 173
  • 1
  • 7
2
votes
1 answer

How to setup Allied Vision Camera Manta using OpenCV in Visual Studio

I have laptop with Windows 10 and Marvell Yukon 88E8072 PCI-E Gigabit Ethernet Controller. I have Allied Vision Manta camera connected to my laptop. I installed Visual Studio 2015 and also I installed Allied Vision SDK - Vimba Viewer. I am able to…
jok23
  • 276
  • 3
  • 14
2
votes
1 answer

OpenCV + GigE Vision Cameras +c++

since a few days, I work on a camera Mako (use ethernet (GigE)). I need to get back the video flow to integrate it on a software house. I try to use the library of OpenCV on the code::blocks but I always have an error saying that it does not manage…
M.C
  • 21
  • 1
  • 5
2
votes
0 answers

Geting videostream from Baumer GigE Cameras and use it in OpenCV

I'm trying to get a videostream from gigE Baumer txg12 camera, to use it in my openCV app. But I don't know how to achieve it. Does anybody have experience with using Baumer SDK with openCV? How can I get my video-stream?
1
vote
1 answer

TypeError calling .NET method using Pythonnet

I'm having a problem calling a method from a .NET dll linked to the eBUS SDK. The end goal of the code is to communicated to a GigE connected camera using python. In C#, the method is: public void SetStreamDestination( string aIPAddress, ushort…
Chris-G
  • 23
  • 4
1
vote
1 answer

GigE Vision Cameras with C# libraries Open Source

I'm currently using UVC compliants cameras, it's working fine with Visual Studio and AForge. As the cameras will be further away, i need to use Ethernet cameras and especially GigE Vision Cameras. I'm searching for an open source library working…
AlexisC
  • 11
  • 1
1
vote
0 answers

About Bitmap frame = new Bitmap(files[index])

I have written some software that records from Gig-E cameras software record raw by streamwriter and my software can show the recorded video by streamreader. Now, in this part of my software, I want to change recorded video to .mp4 to show in a…
payam1363
  • 11
  • 1
1
vote
1 answer

Is OpenCV GigE Vision and GenIcam Compatible

Can OpenCV seamlessly interact with all cameras that comply with these standards
1
vote
1 answer

Creating a program using OpenCV for a wide variety of cameras using GENICAM API and C++

Hi Everyone I am trying to make a camera come up and live stream images using openCV and the GenICam API for the drivers rather than one from the manufacturer. Does anyone know the proper way to use the GenICam API in C++ to pull up the camera as…
1
vote
2 answers

Saving a buffer with Pleora SDK gives blue, doubled BMP, with grey bar underneath

I am currently trying to save an image from a Basler acA1280 color camera using C++ code derived from examples provided with the Pleora SDK (specifically, the image processing sample). I would like to correct some issues with the image I am…
Deathkill14
  • 173
  • 8
1
vote
2 answers

Convert raw image from JAI GigE camera to bitmap in C#

I'm using a JAI GigE Vision camera for image acquisition, but I want to use the AForge Library in C# for the image analysis to create a camera independent solution. Jai_FactoryWrapper.ImageInfo localImageInfo = new…
alfayadd
  • 23
  • 9
1
vote
1 answer

High speed transcoding image data from a gigE camera

I have an 8 mp (3296 x 2472) gigE camera that is capable of running at around 25 fps with 14bit Bayer encoded frames. I have code (using the vimba api) that can capture frames at full rate and wrote the raw data to disk. However, we also wish to…
mjbeals
  • 31
  • 1
  • 4
0
votes
0 answers

How to capture images from GigE cameras using OpenCV? cv2.videocapture() doesn't seem to work. Is there any Python Libraries that support GigE?

I have tried using Cognex GigE to capture images using OpenCV. My code is unable to find the camera. Here is the code that I used. import numpy as np import cv2 capture = cv2.VideoCapture(0) while (True): frame =…
Madhav M K
  • 35
  • 6
1
2