Randomly adding objects to the scene by weights

When we need to add several different objects to the scene, and at the same time, each object should appear in the scene with a greater or lesser probability, we can use the “random.choice” method for generating random sets from the Python “numpy” module.

First, let’s define a list of objects for adding to the scene. For example it could be spheres, cubes and Suzannes:

Let’s also define a list of probabilities with which these objects should appear in the scene:

The list of probabilities must contain the same number of elements as the list with objects. The number is the probability of an object appearing in the scene, which is in the list of objects in the same place.

In our case, for spheres, the probability of appearing is 0.6 (most often), for cubes – 0.3 (less often) and for Suzannes – 0.1 (rarely).

Convert the list of probabilities to a numpy array (numpy.array). And additionally normalize the values. It is needed if the sum of the probabilities we set in the list is not equal to 1 (for example, if we definde the probabilities in percentage format [60, 30, 10]).

Now call the “random.choice” method to generate a set of 6 objects that we want to add to the scene.

In the first parameter “a” we specified the initial list of objects.

We set the “size” parameter to 6. This means that as a result we want to get a list of six objects.

Since the number of objects we need is greater than in the original list, the “replace” parameter must be set to True. This means that we allow repetition of objects in the resulting list. If we set it to False, then each object from the source list will be present in the resulting list only once. However, in this case, we need to make sure that the length of the original list of objects is greater than or equal to the number specified in the “size” parameter.

In the “p” parameter, we specify a numpy array with normalized probabilities.

If we execute our code several times and print the resulting list,

we can clearly seen that, spheres are most common, cubes are much rarer, and Susannas are very rare as required.

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comment
Inline Feedbacks
View all comments