Sharpen Heightfield Terrains

   430   4   0
User Avatar
Member
85 posts
Joined: 3月 2013
Offline
Does anyone know how to sharpen Heightfield Terrains? I would like to avoid sharpening the polygons. Curious if there's a way to do this on the voxel side of things.
User Avatar
Member
3921 posts
Joined: 2月 2012
Offline
Hi,

You can perform an unsharp mask in VEX on a volume like this where the second input is the output of a HeightField Blur, using a Volume Wrangle SOP:

int index = nametoprim ( 1, chs("layer") );
float d = volumesample ( 1, index, @P );
@density += ( @density - d ) * ch("amount");
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

patreon.com/animatrix | vimeo.com/animatrix3d
User Avatar
Member
85 posts
Joined: 3月 2013
Offline
Wow, thank you. What are you inputing into the layer?
User Avatar
Member
3921 posts
Joined: 2月 2012
Offline
tadian
Wow, thank you. What are you inputing into the layer?

height

This is inline with other HF SOPs that expects a layer name.

And make sure to bind height to density:

Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

patreon.com/animatrix | vimeo.com/animatrix3d
User Avatar
Member
85 posts
Joined: 3月 2013
Offline
Thank you so very much. This is awesome. I read up on the principles behind unsharp mask and not only does this work, but I understand it. Your explanation and graphic was very helpful.
Edited by tadian - 2023年3月27日 21:43:20
  • Quick Links