Dear all,
I am postdoc in Bruxelles (von Karman institute) and I'm trying to use the stereo camera for sloshing characterization.
Do you have an example of Speckel filter use ? I tried the following code but it doesn't work....
'stereo.initialConfig.setSpeckleFilter(dai.RawStereoDepthConfig.PostProcessing.SpeckleFilter.True) '
Thanks a lot for your help.
Jean

  • erik replied to this.

    Hello jmuller ,
    You can set speckle filter like this:

    config = stereoDepthNode.initialConfig.get()
    config.postProcessing.speckleFilter.enable = False
    config.postProcessing.speckleFilter.speckleRange = 50
    depth.stereoDepthNode.set(config)

    This was taken from an example here. You can also see this example, which lets you change all postprocessing params in realtime to view the difference in depth output.
    Thanks, Erik

    Good morning Erik,
    Thank you very much for all these useful links.
    Jean