mrstecklo
mrstecklo
@ILENIMARIUS, in order to make `libpylonc` visible add `/opt/pylon/lib` to `LD_LIBRARY_PATH`. Or use the solution described here https://github.com/joshdoe/gst-plugins-vision/issues/55. Your `step 3` can be turned into pull request as CMake's `find_library`...
Error is introduced in https://github.com/joshdoe/gst-plugins-vision/commit/ee440aa927b9833f1df2a9443de73eb8f24f8f22. Seems like auto tests would be of great help @matthewperkins, preset name “Daylight" or "Daylight5000" depends on a camera model, as far as I remember....
Hi, @mgabell. Those error messages are not very informative. Try setting `GST_DEBUG`, e.g.: `GST_DEBUG=2,pylonsrc:6 gst-launch-1.0 pylonsrc ! videoconvert ! ximagesink` There were fresh commits since you opened this issue, so...
> gstpylonsrc.c:3762:video_frame_free: PylonC error: PylonC error #c3000004 'Invalid stream grabber handle' (0xc3000004). This is very strange. `video_frame_free` is a callback which can only be called after `src->streamGrabber` is valid. I'm...
> def main(): > print(cv2.version) > cap = open_cam(2048, 2048) > if not cap.isOpened(): > sys.exit("Failed to open camera!") Don't you need some kind of busy loop to keep interpreter...
Hi, @JMOlmos-cafsig. I've once created a console application for configuring Basler cameras using C API. Unfortunately I've lost the code. But as far as I remember you need to connect...
I'm not a project owner which is @joshdoe. So I can't make any final decisions. I've just used to contribute to this plugin. So now I'm just sticking around pretending...
Some of the features I've found ``` Name ------------------------- Alias-------------------------- Related not equivalent ExposureTime ---------------- ExposureTimeAbs AutoExposureTimeLowerLimit -- AutoExposureTimeAbsLowerLimit AutoExposureTimeUpperLimit -- AutoExposureTimeAbsUpperLimit WidthMax -------------------- IntegerFeatureMax(Width) HeightMax ------------------- IntegerFeatureMax(Height) AcquisitionFrameRate --------...
Some more features. And with the previous comment it is (almost) a complete list of features with duplicates already implemented in `pylonsrc`. ``` Name ------------------------- Alias-------------------------- Related not equivalent FrameBurstStart...
At first I thought that feature name strings could be extended to an array of aliases. this would introduce a generic way to handle duplicates. But it also has a...