TheImagingSource / tiscamera

The Linux SDK for The Imaging Source cameras.
https://www.theimagingsource.com
Apache License 2.0
299 stars 147 forks source link

Error: Getting Blank Screen When Trying to capture image using v4l2 #560

Open SwasthikaPoojary opened 3 days ago

SwasthikaPoojary commented 3 days ago

Hi, I am trying to capture a image using a USB Camera(DMM72BUC02-ML Monochrome Board Camera) in Jetson Orin Nano. While I am able to capture images using the Aravis , I am facing issues when attempting to capture images via V4L2. Despite following the required steps, I am unable to retrieve an image from the camera using V4L2. I'm getting a blank screen.

Could you assist in resolving this issue or provide guidance on troubleshooting the V4L2 image capture on Orin Nano?

TIS-Edgar commented 3 days ago

Hi, A few questions to start:

What do you mean by capturing images using aravis? From the 72 camera?

How are you trying to capture images?

Does a /dev/video* node exist for the camera? ll /dev/v4l/by-id/ will show you associations between devices and nodes.

If it exists, does qv4l2 maybe work? That is a v4l2 test bench. sudo apt install qv4l2

SwasthikaPoojary commented 2 days ago

Thanks for the reply!

I’ve Followed the exact steps you have provided:

git clone https://github.com/TheImagingSource/tiscamera.git cd tiscamera sudo ./scripts/dependency-manager install mkdir build cd build cmake -DTCAM_BUILD_ARAVIS=OFF cmake -DTCAM_BUILD_V4L2=ON make sudo make install Then I ran command: gst-launch-1.0 tcambin ! videoconvert ! ximagesink to capture image, but I’m getting a blank screen.

image

When I ran the tcam-capture command, I get two options: Aravis and V4L2, I can capture image using Aravis and Unable to capture image using V4L2.

Does a /dev/video* node exist for the camera? ll /dev/v4l/by-id/ will show you associations between devices and nodes. -->Yes, the node exists for camera.

If it exists, does qv4l2 maybe work? That is a v4l2 test bench. sudo apt install qv4l2 ---> Tried this, but still unable to capture image using v4l2.