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
I was wondering how it would be possible to get the IR image as shown in the Nimbus 3D-visualizer (see image below):
I have tried the snippet proposed in the repo:
fromnimbusPythonimportNimbusClientimporttimecli=NimbusClient.NimbusClient('192.168.1.38')
cli.enaRawMode(True)
time.sleep(1) #<-- there might be still some 3D images in the pipelineheader, img=cli.getImage()
imgType=int(header[NimbusClient.HeaderImgType])
ifimgType==NimbusClient.NimbusImageRaw:
print ("raw images received")
print(img)
else:
print ("something went wrong...")
#-> repeat image readout (cli.getImage())
Without any succeess, it seems that enabling the Raw Mode isn working in my case.
So I was wondering if there is any way to obtain or recompose the IR image matrix from the other image grabber:
header, (ampl, radial, x, y, z, conf) =cli.getImage(invalidAsNan=True)
Many thanks for any suggestion or help!
The text was updated successfully, but these errors were encountered:
Raw Mode means actually sensor raw data. Which can't be visualized by the web interface and does only include the phase information of the actual imager.
You probably want cli.enaRawMode(False) in order to see the sensor data in a meaningful representation.
In order to read the sensor data try that script mentioned earlier: from nimbusPython import NimbusClient cli = NimbusClient.NimbusClient("192.168.0.69") header, (ampl, radial, x, y, z, conf) = cli.getImage(invalidAsNan=True)
Simply visualize the ampl and you should have the intensity image.
Hello!
I was wondering how it would be possible to get the IR image as shown in the Nimbus 3D-visualizer (see image below):
I have tried the snippet proposed in the repo:
Without any succeess, it seems that enabling the Raw Mode isn working in my case.
So I was wondering if there is any way to obtain or recompose the IR image matrix from the other image grabber:
Many thanks for any suggestion or help!
The text was updated successfully, but these errors were encountered: