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 the Issue
I have been trying to implement a data acquisition pipeline for the SPECIM FX series cameras, using the harvesters API. By utilizing the Matrix Vision GenTL producer, I was able to connect to the camera (FX-17), set parameters like FPS, Exposure, etc and capture one scan.
The expected output for the buffer is 640x224, as the spatial resolution of the camera is 640pixel and the specrtal resolution is 224 bands (which are encoded as columns by the camera). When I try to create a while loop to capture multiple frames, the first 198 frames are captured as expected, and the buffer is of size 640x224 with PixelFormat Mono12Packed. However, after that and for the rest of the loop the buffer size changes to 463x463 and the PixelFormat also changes to Mono8
Sample Code
h = Harvester()
h.add_file(r'C:\Users\savvas\Baluff\bin\x64\mvGenTLProducer.cti')
h.update()
ia = h..create()
ia.start()
for i in range(300):
with ia.fetch() as buffer:
print(i, ' : ', buffer)
ia.stop()
Configuration
OS: Windows10
Python: 3.8
Harvester: 1.4.2
Camera: SPECIM FX-17
The text was updated successfully, but these errors were encountered:
Hello, @savassif. What mvGenTLProducer version are using? I had the same problem with 3.0.0 version. Rollbacked to 2.46.2 and it worked. Try it out as well
Describe the Issue
I have been trying to implement a data acquisition pipeline for the SPECIM FX series cameras, using the harvesters API. By utilizing the Matrix Vision GenTL producer, I was able to connect to the camera (FX-17), set parameters like FPS, Exposure, etc and capture one scan.
The expected output for the buffer is 640x224, as the spatial resolution of the camera is 640pixel and the specrtal resolution is 224 bands (which are encoded as columns by the camera). When I try to create a while loop to capture multiple frames, the first 198 frames are captured as expected, and the buffer is of size 640x224 with PixelFormat Mono12Packed. However, after that and for the rest of the loop the buffer size changes to 463x463 and the PixelFormat also changes to Mono8
Sample Code
Configuration
The text was updated successfully, but these errors were encountered: