Questions tagged [vimba-sdk]

13 questions
2
votes
1 answer

How to make Frame Rate constant of Allied Vision Camera using Vimba SDK?

I am using Allied Vision Camera Manta G-201C for a project. The requirement is of constant 30 FPS (Fames Per Second), but I am having a higher rate of 33-34 and is not constant. The following code I am using: #! /usr/bin/python3.7 from datetime…
2
votes
1 answer

Increase Frames Per Second (FPS) of live stream using Allied Vision Camera that uses Vimba SDK for Python

To begin with, I am given Allied Vision Camera and with the help of Vimba SDK Python, I am streaming. FPS for streaming is around 12-14, whereas the maximum FPS offered by Manta G-201C is 30. How to reach to maximum FPS? First of all, with the help…
1
vote
0 answers

What causes flickering of moving objects in video streams?

I am recording a video stream from my camera and this is what the feed looks like? The moving objects seem to be cut and just show an overall weird behavior. What could cause this phenomenon? Decreasing the frame rate appears to fix the problem to a…
anonymous
  • 136
  • 3
1
vote
1 answer

How to use a frame grabbed asynchronously with Vimba Python?

I am working with a system that uses an Allied Vision Camera with Vimba Python. Currently, I grab frames synchronously inside a loop, convert them into numpy arrays and append those to a list. for _ in range(10): frame = cam.get_frame() img…
1
vote
0 answers

Docker network configuration with GigE camera interface

I'm trying to containerize a program that uses the Vimba SDK to control a GigE camera, which is connected by Ethernet from a secondary network interface on the host system. Vimba seems to want direct control over the camera network interface. For…
rgov
  • 3,516
  • 1
  • 31
  • 51
0
votes
0 answers

How do I save the image information as .bil using the Vimba API for python for the allied vision cameras?

I have trained a model to detect the object's position using the .bil file(for my camera, 168 bands for each pixel) as the input captured directly from the camera's default software. How do I gather the same on python for real-time object…
0
votes
1 answer

Install Vimba python on Windows

I am not very familiar with programming on Windows yet. With my code I want to control a camera, for this I wanted to use the Vimba Python interface. Thus I downloaded the GitHub repository of AlliedVision. Now my question: In the folder is an…
0
votes
0 answers

How to manage global variables in C asynchronous programming?

I'm using Vimba.c API, specifically the AsynchronousGrab example provided in the documentation. Basically, AsynchronousGrab is a program that asynchronously captures an image. I've customized it to work on a user-sent trigger, which means I have my…
0
votes
1 answer

How to access grayscale values of an image with Vimba.c API?

I'm using the Vimba API for c language. I'm having trouble to access the grayscale values of the image that I'm capturing with the camera. I'm also using the VisualStudio for the first time, since it was advised by Vimba, not sure why. I was…
0
votes
1 answer

How to capture images of live feed continuously when a key is pressed?

I integrate Allied Vision Camera Manta G-201C with python. I want to start capturing imgaes when I press key 'c', otherwise it should continuosly show the image (eventhough I pressed the key). I have the whole code which is running perfectly, but I…
0
votes
1 answer

How to start Vimba API as ubuntu service

I'm having an issue with ubuntu service that includes Vimba API which is about the Allied Vision Cameras. the application that i built includes Vimba API, tcp/ip server and rs485 communication. It is going to be used in closed loop system so i have…
0
votes
1 answer

How to program an Allied Vision GigE camera to let it automatically resume image acquisition after disconnecting and reconnecting it?

These days I'm testing an Allied Vision GigE camera (Alvium G1-1236, to be more exact) using Vimba SDK 6.0. I'm using C++, Ubuntu 18.04. With the help of the user guide, API documentation, and the example code, I can successfully write C++ code to…
yaobin
  • 2,436
  • 5
  • 33
  • 54
0
votes
1 answer

Synchronizing the timestamp of multiple Allied Vision GenICam cameras through PTP

I am developing a system with multiple industrial Allied Vision Mako-cameras. I need those cameras to be synchronized, for which Allied Vision recommends the PTP protocol. Therefore, I have a time-server which acts as a PTP master clock. The cameras…
vatbub
  • 2,713
  • 18
  • 41