Jump to content

Remove a given % of points randomly


Recommended Posts

I attach a file where need to remove randomly a percentage of the points say for example 15%, whether using vex or not. I know I can reduce the number in the scatter, but that happens before further processing on the points, I'd like to keep the the point positions but just remove some of them.

 

 

remove_randomly_pct_points_.hiplc

remove_randomly_percentage_of_points.png

Edited by anicg
Link to comment
Share on other sites

If you need exact number of random points, you could use Sort SOP (Point Sort: Random) and then Blast the right amount of points:

image.png.c0ef7423446f66e1b1c9d77c1d60aba7.png

 

This code removes approximate percentage:

float thr  = 0.15;
float rand = rand(@ptnum + 0.654);

if ( rand < thr)
{
    removepoint(0, @ptnum);
}

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...