You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe what you want to implement and what the issue & the steps to reproduce it are: Framerate issue
I am trying to capture a sequence of still images.
I set two stages as below.
I checked that 500fps is possible from the pylon viewer.
camera.StartGrabbing(pylon.GrabStrategy_LatestImages,pylon.GrabLoop_ProvidedByUser)camera.AcquisitionFrameRateEnable.SetValue(True)total_frames=[50,50]# Frames at different stagesframe_rates=[500,10]# Corresponding frame rates
And I set the framerate as below. and started recording.
As you can see, the stage 1 which is fast framerate is not very consistent. It must be near 2ms, but they are in the range of 1~3ms and sometimes it is even 0ms or more than 3ms
Also, the relatively slow stage 2 shows the initial framerate is very fast. and it reaches to the specified framerate.
Is my method of specifying the framerate wrong?
Is your camera operational in Basler pylon viewer on your platform
Yes
Hardware setup & camera model(s) used
acA1920-150uc
USB3 communication with PC.
Runtime information:
OS is windows 11
pylon Viewer 64-Bit
pylon Release 7.4.0.14900
pylon C++ SDK 7.4.0.38864
pylon Application 2.1.0.14100
pylon Viewer 7.4.0.14100
python: 3.11.7 | packaged by Anaconda, Inc. | (main, Dec 15 2023, 18:05:47) [MSC v.1916 64 bit (AMD64)]
platform: win32/AMD64/10
pypylon: 3.0.1 / 7.4.0.38864
The text was updated successfully, but these errors were encountered:
As mentioned by @SMA2016a you measure the time when you receive the frame on your host and not when the acquisition took place.
As you are not running on a RTOS, the time when your user process wakes up ( RetrieveResult returns ) can jitter quite heavy depending on overall system load.
Describe what you want to implement and what the issue & the steps to reproduce it are: Framerate issue
I am trying to capture a sequence of still images.
I set two stages as below.
I checked that 500fps is possible from the pylon viewer.
And I set the framerate as below. and started recording.
and below is the time difference between each frame
As you can see, the stage 1 which is fast framerate is not very consistent. It must be near 2ms, but they are in the range of 1~3ms and sometimes it is even 0ms or more than 3ms
Also, the relatively slow stage 2 shows the initial framerate is very fast. and it reaches to the specified framerate.
Is my method of specifying the framerate wrong?
Is your camera operational in Basler pylon viewer on your platform
Yes
Hardware setup & camera model(s) used
acA1920-150uc
USB3 communication with PC.
Runtime information:
The text was updated successfully, but these errors were encountered: