C++ Wrangle: The Last Frontier In Custom Tool Development From Within Houdini

   15316   28   3
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
The most powerful wrangle operator due to the sheer fire power of the HDK. Performance increase can vary from a few times to thousands of times depending on the scenario.

Edited by animatrix_ - Sept. 8, 2016 11:46:54
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
459 posts
Joined: Oct. 2011
Offline
Cool!

-b
http://www.racecar.no [www.racecar.no]
User Avatar
Member
1737 posts
Joined: May 2006
Offline
No assembler wrangle? Lame.



http://www.tokeru.com/cgwiki [www.tokeru.com]
https://www.patreon.com/mattestela [www.patreon.com]
User Avatar
Member
1390 posts
Joined: July 2005
Offline
I'm also disappointed with the lack of assembler

Is it a wrapper of Python SOP With inlineccp or something else?
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
Assembler is overrated

symek
I'm also disappointed with the lack of assembler

Is it a wrapper of Python SOP With inlineccp or something else?

It's a wrapper around inlinecpp.

I hope SESI adds this operator to H16, possibly ship it with the required libraries.
Edited by animatrix_ - June 20, 2016 12:29:22
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
387 posts
Joined: Nov. 2008
Offline
Does have this Cpp Wrangle and OpenCl Wrangle a RFE ID? Would you mind share it there?
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
Yes OpenCL Wrangle RFE ID #75612, C++ Wrangle RFE ID #76080.

Please submit these to SESI so they would be added to H16. A lot of people contacted me about these operators and said that they are interested to learn these languages after seeing the performance gains in my videos.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
49 posts
Joined: Sept. 2014
Offline
I think tools like this and your OpenCL Wrangle SOP that harness and empower Houdini dramatically for TD works, do not need so much community requests for being addressed. SESI should be enough wise for addressing these as Houdini new features, which they are

and congratulations @pusat.
you have done some great jobs.
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
Thanks sorian, these tools would definitely make Houdini more future proof in my opinion, thanks to the incredible talent in our community, to inspire and innovate beyond what Houdini is capable of.

I hope people RFE these, as a few people won't make much of a bang to convince SESI to consider implementing these.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
15 posts
Joined: Sept. 2014
Offline
Can you share it there?
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
wangguo
Can you share it there?

Where? I will release it soon. I released OpenCL Wrangle SOP yesterday.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
You can download the operator here:
C++ Wrangle [dropbox.com]

I added Clip Geometry code in the video as a preset so you can experiment with it.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
15 posts
Joined: Sept. 2014
Offline
thanks, pusat
User Avatar
Member
471 posts
Joined: Nov. 2013
Offline
Therefore with this Wrangle can we create our own plugin in Houdini without using of Visual Studio for example?
Is this like Python API in Maya and using that in its script editor?
And finally can we access to all Houdini's API data?
best regards.
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
You should be able to do so. There are some limitations in inlinecpp i.e. you can't change pixel colors of a COP directly without creating an array of all pixel values, modify these, and then set them back. For geometry, you are directly modifying it though so no overhead AFAIK.

It's not like Maya's Python API, which is a wrapper. You can access all of HDK.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
280 posts
Joined: Dec. 2015
Offline
mestela
No assembler wrangle? Lame.



Lol
https://www.imdb.com/name/nm8408875/ [www.imdb.com]
User Avatar
Member
182 posts
Joined: April 2009
Offline
pusat
You should be able to do so. There are some limitations in inlinecpp i.e. you can't change pixel colors of a COP directly without creating an array of all pixel values, modify these, and then set them back. For geometry, you are directly modifying it though so no overhead AFAIK.

It's not like Maya's Python API, which is a wrapper. You can access all of HDK.

I thought inlinecpp requires you to have a working dev setup for the HDK. So on windows you would need to have Visual Studio set up properly before you can use it.
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
blackpixel
pusat
You should be able to do so. There are some limitations in inlinecpp i.e. you can't change pixel colors of a COP directly without creating an array of all pixel values, modify these, and then set them back. For geometry, you are directly modifying it though so no overhead AFAIK.

It's not like Maya's Python API, which is a wrapper. You can access all of HDK.

I thought inlinecpp requires you to have a working dev setup for the HDK. So on windows you would need to have Visual Studio set up properly before you can use it.

Yo do. I thought he meant developing C++ tools without actually using the VS IDE, not avoid installing it.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
1799 posts
Joined: Oct. 2010
Offline
I think I may have RFE'd this one too. It would indeed be useful. Great work with this!
-G
User Avatar
Member
4495 posts
Joined: Feb. 2012
Offline
Thanks, the more RFEs the better chances SESI will give this kind of powerful SOPs to TDs.
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
  • Quick Links