Skip to content

USB 3.0 camera image transport not working properly #830

@junhui

Description

@junhui

Describe what you want to implement and what the issue & the steps to reproduce it are:

Model: a2A5320-23umPRO , connect to PC USB 3.0, i use python to do line 1 trigger the shot. it give me error with image transport not working properly

Exception

it throw exeption at grab_result = camera.RetrieveResult(5000, pylon.TimeoutHandling_ThrowException)

the issue is my camera is using USB 3.0, not GigE network, anything wrong?

Grab timed out. Possible reasons are: The image transport from the camera device is not working properly, e.g., all GigE network packets for streaming are dropped; The camera uses explicit triggering (see TriggerSelector for more information) and has not been triggered; Single frame acquisition mode is used and one frame has already been acquired; The acquisition has not been started or has been stopped. : TimeoutException thrown (file 'instantcameraimpl.h', line 1058)

Code

nothing special, no own logic yet. just follow the example code:

import os
import time
from pypylon import pylon
 
# Define the folder to save images
save_folder = 'captured_images'
os.makedirs(save_folder, exist_ok=True)
 
try:
    # Initialize the camera
    tlFactory = pylon.TlFactory.GetInstance()
    devices = tlFactory.EnumerateDevices()
   
    if len(devices) == 0:
        print("No camera found. Please connect a camera.")
        exit(1)
   
    # Create and open the camera
    camera = pylon.InstantCamera(tlFactory.CreateDevice(devices[0]))
    camera.Open()
    print(f"Connected to camera: {camera.GetDeviceInfo().GetModelName()}")
   
    # Configure trigger safely
    try:
        # Method that works with all versions of pypylon
        try:
            # TriggerSelector
            camera.TriggerSelector.SetValue("FrameStart")
            print("Set TriggerSelector to FrameStart")
           
            # TriggerMode
            camera.TriggerMode.SetValue("On")
            print("Set TriggerMode to On")
           
            # TriggerSource
            camera.TriggerSource.SetValue("Line1")
            print("Set TriggerSource to Line1")
           
            # TriggerActivation
            camera.TriggerActivation.SetValue("RisingEdge")
            print("Set TriggerActivation to RisingEdge")
        except Exception as e:
            print(f"Error setting trigger parameters: {e}")
            print("Some trigger parameters might not be available on this camera model.")
    except Exception as e:
        print(f"Error configuring trigger: {e}")
   
    # Print camera configuration
    print("\nCamera configuration:")
    print(f"- Model: {camera.GetDeviceInfo().GetModelName()}")
    print(f"- Serial: {camera.GetDeviceInfo().GetSerialNumber()}")
   
    # Start grabbing images
    camera.StartGrabbing(pylon.GrabStrategy_OneByOne)
    print("Camera is waiting for triggers on Line1...")
   
    # Counter for naming images
    image_counter = 0
   
    while camera.IsGrabbing():
        try:
            # Wait for trigger with timeout
            grab_result = None
            try:
                grab_result = camera.RetrieveResult(5000, pylon.TimeoutHandling_ThrowException)

Is your camera operational in Basler pylon viewer on your platform

Yes

Hardware setup used

PC or embedded system model/type:

  • CPU architecture: X86_64
  • Operating System: windows 11
  • RAM: 16GB

Interfaces used to connect the cameras:

Sensor:

  • Omron E3Z-D62

Wire connection:

  • Basler camera connect to PC USB 3.0
  • M8 6P white wire indicated line one connect to sensor black wire for signal
  • M8 6P blue wire connect with sensor blue with negative power
  • sensor brown connect with positive power

Camera(s) used

Basler a2A5320-23umPRO (40605386)
p=vu3pc_imx542m_pro/s=r/v=2.5.1/i=9421.6/h=e7c7a35

Runtime information:

python: 3.10.6 (tags/v3.10.6:9c7b4bd, Aug  1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)]
platform: win32/AMD64/10
pypylon: 4.1.0 / 9.0.3.215

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions