Questions tagged [genicam]

For questions related to programming GenICam devices and GenICam software SDKs.

GenICam is a standard for controlling cameras administered by the EMVA (European Machine Vision Association) and associated industry partners.

The standard is well above OSI layers 1 to 4. Physical details are defined in other standards such as USB3 Vision and GigE Vision. These cameras often use higher resolution and bit-depth than typical cell phone devices. The GenICam standard has details on triggering, capture parameters, digital I/O, etc which are important in machine vision applications, but not for pure video to be consumed by a human viewer as found in most cell phones.

The standard defines a schema and a Standard Feature Naming Convention (SFNC). Each camera vendor implements an XML description using the schema and SFNC to map camera registers to vendor independent features. This mechanism is to allow generic code (not tied to a particular vendor) to work with many devices.


References:

19 questions
0
votes
0 answers

How would I use a pointer in C# to retrieve data

Using a GenICam SDK to retrieve camera images. The SDK has a class for getting image information from a buffer. The image instance has a property called DataPointer: I understand generally that a datapointer points to a instance's location in…
Eric Snyder
  • 1,816
  • 3
  • 22
  • 46
0
votes
1 answer

Read raw Genicam H.264 data to avlib

I try to get familiar with libav in order to process a raw H.264 stream from a GenICam supporting camera. I'd like to receive the raw data via the GenICam provided interfaces (API), and then forward that data into libav in order to produce a…
Kiamur
  • 125
  • 1
  • 11
0
votes
1 answer

Can change camera's Device Parameters using Aravis github project

Code is provided below. The line: device.set_string_feature_value('PixelCoding', 'Raw') is not working. It defaults pixelCoding to the default (Mono) I tired putting the lines: device.set_integer_feature_value('TLParamsLocked',…
Daniel Ramsey
  • 177
  • 1
  • 2
  • 9
0
votes
1 answer

firewall config for gencam / GigE vision camera discovery and communication

I need to configure an otherwise closed firewall (to LAN) to allow gencam / GigE Vision camera discovery and communication. The standard itself is unfortunately not publicly available, but the communication seems to be happening at UDP/3956…
eudoxos
  • 18,545
  • 10
  • 61
  • 110
1
2