Questions tagged [flycapture]

FlyCapture SDK from Point Grey

FlyCapture SDK (TM) from Point Grey is a image acquisition and camera control software for use with Windows or Linux operating systems. The software can be/is use with Triclops SDK (TM) software which does the image rectification and stereo processing to provide real time depth/range images. Both of these software packages have been created by Point Grey Research.

33 questions
1
vote
1 answer

Get image from Point Grey camera using PyCapture2 and OpenCV

I am trying to get image from Point Grey Camera using PyCapture2, provided by them as a python wrapper for FlyCapture2. I can take retrieve the image buffer but I am not able to get image as Mat datatype to be used in OpenCV. For reference: while…
Naveen
  • 11
  • 1
  • 3
1
vote
1 answer

When does a Python Numpy array declaration get no arguments?

I have a camera connected to my computer that produces 16bit grayscale images. I am importing them with the camera manufacturer's proprietary software and then insert them into a numpy array. imObj = fc2.Image() frame =…
DanGoodrick
  • 2,818
  • 6
  • 28
  • 52
1
vote
3 answers

How do I run an installed Python module on Windows?

I am working with a Point Grey camera (Grasshopper3) and I analyse the images using OpenCV in Python. Point Grey cameras come with an API in C named flycapture. I found python bindings for the flycapture v2 api on GitHub (pyflycapture2) and they…
1
vote
1 answer

Stereo image acquisition using bumblebee2

I am using the Bumblebee2 camera and I am having trouble with acquiring stereo images from it. When I attempt to access the camera using MATLAB, the program crashes. Does anyone know how I can acquire the stereo images using FlyCapture?
Sarisha
  • 11
  • 1
1
vote
1 answer

Function call causes C++ program to freeze unless stepped-through in debugger

I have this short C++ program which takes snapshot images from a camera in a loop and displays them: void GenericPGRTest::execute() { // connect camera Camera *cam = Camera::Connect(); // query resolution and create view window …
neuviemeporte
  • 6,310
  • 10
  • 49
  • 78
0
votes
0 answers

Issue installing jordens/pyflycapture2 on RP 4B with Raspbian Buster

I did the recommendations by kelly45324, have the same setup too (RP 4B with Raspbian Buster), but still having trouble. Here's the last segment of the error I got when I ran pip install git+https://github.com/jordens/pyflycapture2.git creating…
Hazman
  • 1
0
votes
1 answer

Why is a cv:: Mat object behaving differently between debug and release?

I'm having a real head-scratcher of a time trying to figure out why the population of my OpenCV matrix works exactly as I expect it to in debug mode, yet when I try to release the project, it truncates all the values that are given to it, and…
Robot Fox
  • 63
  • 6
0
votes
1 answer

What is the PySpin equivalent of the PyCapture2 camera Power ON function/method?

I am searching for a method to test if the camera is on for PTG camera. In PyCapture2 the below code works but the presumed PySpin cam.DeviceConnectionStatus() will not work because the function seems not to be present. PySpin Camera library…
ZF007
  • 3,708
  • 8
  • 29
  • 48
0
votes
1 answer

Decrease in the quality of the image in flycapture

I am using flycapture sdk sample program to capture image form the flycapture. My problem is that when i capture the image using the flycapture installed application the size of image is about 1.3 - 1.5 Mb. But when the take the same image using my…
0
votes
1 answer

Wrong file not found exception

I'm programming in C# using FlyCapture2 SDK (for point grey cameras) for GigE cameras. I debugged my code in my Laptop. It works in my laptop. I run it in my NUC PC (NUC is a mini pc produced by intel) and I get this error: An unhandled exception…
Babak.Abad
  • 2,839
  • 10
  • 40
  • 74
0
votes
0 answers

WPF binding image from camera

Hello I'm new around here, used to be rather passive reader. I'm learning WPF + MVVM, and I think I'm missing something in the whole binding concept. I'm using flycapture2 SDK for point grey camera, according to attached examples I should call…
Sam Hicks
  • 31
  • 1
  • 7
0
votes
0 answers

convert flycapture.Image to Mat

I am trying to convert FlyCapture2.Image to Opencv Mat in java and I dont know why its not working. sorry for my bad eng and noob question :D cam.RetrieveBuffer(rawImage); org.bytedeco.javacpp.FlyCapture2.Image rgbImage=new…
user6140047
0
votes
2 answers

Error installing pyflycapture2 on Windows

I am attempting to install this https://github.com/jordens/pyflycapture2 python binding on my Windows machine. The readme only has instructions on how to do it for Linux systems, but I imagine the library should still work. I am able to run "python…
Jenner Felton
  • 787
  • 1
  • 9
  • 18
0
votes
1 answer

flycapture2.h and " class Error"

i'm not good in English. I'm researching about live stream video using live 555 but i don't stream from a file, i stream from a live camera. Here is one of file in code that i get from internet: #ifndef PG_CAMERA_H #define PG_CAMERA_H #include…
Minh
  • 9
  • 1
0
votes
2 answers

Using python binding for flycapture to retrieve color image

I am working with the CMLN-13S2C-CS CCD camera from PointGrey Systems. It uses FlyCapture API to grab images. I would like to grab these images and do some stuff in OpenCV with them using python. I am aware of the following python binding:…
The Dude
  • 3,795
  • 5
  • 29
  • 47