HighImp

Results 28 comments of HighImp

Hi Parkhy, can you add ```python print(camera.BslResultingTranferFrameRate.Value) ``` before you start grabbing and tell me the value? If it is higher than your measured loop frequency, then may your loop...

Hi, do you want to press a pushbutton, connected to the Pi, and let the Pi execute a software trigger, or do you want to connect the Raspberry IOs/Push Button...

Hello, it is possible to select the demosaicing node PGI in a Bayer pixel format, but it is not recommended. If you use Auto mode, the best algorithm will be...

You will probably see severe artifacts that cannot be fixed due to this combination.

Hi, according to the docu, your code should work. It seems you copy the samples? Can you please tell me your camera model and the FW-Version? Also, just out of...

Hi Raja, For the second point, I might have an idea: you can activate the timestamp chunks, and drop all frames until the difference in timestamps between image n and...

Hi, I have written a small example of discarding images based on the timestamp. I think it's best to contact support for your jitter issue as I don't think you...

I have to admit that you can also calculate the number of discarded images by multiplying the FPS by the discard time, and not using the timestamps. I hope the...

So this small snipped do the trick as well: ```python camera = py.InstantCamera(py.TlFactory.GetInstance().CreateFirstDevice()) camera.Open() discard_time_ms = 3000 drop_images = int(camera.BslResultingTransferFrameRate.Value * discard_time_ms / 1000) + 1 camera.StartGrabbing(py.GrabStrategy_OneByOne) for _ in...

Hi, you want the irregular pattern, but you dont know how to trigger the second camera irregular, did i get that correct? Can you tell the fps and when do...