Hello!
I’m working with the Script Editor of Isaac Sim to create synthetic data for my NN.
I was wondering if it is possible to change dynamically the min/max values of the uniform distribution inside the code. Imagine that I used:
random_vector = omni.replicator.core.distribution.uniform((10,10,10), (30, 30, 50))
And then I would like to change the values like:
random_vector = omni.replicator.core.distribution.uniform((200,200,500), (400, 400, 600))
Maybe like using a switch-case block.
Is it possible? If so, how?
Thank you very much!