ICE Topo - Adaptative Subdivision

Plugins linking to this thread: (hide)

Adaptive SubdivisionAuthor: Piotrek Marczak
An ICE modeling compound that applies a Catmull-Clarke subdivision scheme only to polygons with an neighbor adjacency angle greater than a user specified value. The si-community discussion includes an interesting discussion with ICE Modeling Developer Guillaume Laforge.

local backup: ooAdaptive Subdivision.xsicompound

User avatar
origin
Posts: 619
Joined: 09 Jun 2009, 11:59
Location: warsaw

ICE Topo - Adaptative Subdivision

Post by origin » 17 Apr 2011, 11:45

Hello guys,
my first simple ICE topo compound for adaptive subdivisions
let me know if it works for you
Attachments
ooAdaptive Subdivision.rar
(3.34 KiB) Downloaded 434 times
adapativesubd.png
adapativesubd.png (35.44 KiB) Viewed 7517 times

User avatar
Maximus
Posts: 1104
Joined: 09 Jun 2009, 15:45

Re: ICE Topo - Adaptative Subdivision

Post by Maximus » 17 Apr 2011, 13:42

thanks Origin, that works perfect! nice compound !
thanks for sharing!

User avatar
Memag
Posts: 339
Joined: 09 Aug 2010, 01:37
Location: Tits

Re: ICE Topo - Adaptative Subdivision

Post by Memag » 17 Apr 2011, 15:44

Thanks.
Works here as well (didn't work on grid object though).

User avatar
guillaume
Posts: 41
Joined: 19 Jul 2009, 00:01
Contact:

Re: ICE Topo - Adaptative Subdivision

Post by guillaume » 17 Apr 2011, 18:07

Very nice one :). I like how you handle the adaptivity at each iteration.

I took a quick look at your graph and made a 1.1 version. I removed the Build Array from Set, and some Find in Array nodes. Instead I'm using a custom attribute to decide if the polygon must be subdivided or not. This way it is 1000% faster ;).

Here is the compound : http://dl.dropbox.com/u/5533643/Softima ... sicompound

Cheers,

Guillaume Laforge

User avatar
origin
Posts: 619
Joined: 09 Jun 2009, 11:59
Location: warsaw

Re: ICE Topo - Adaptative Subdivision

Post by origin » 17 Apr 2011, 19:39

Thanks a ton!
I suppose I should avoid repeat node at all cost (no multithreading?) ?

User avatar
guillaume
Posts: 41
Joined: 19 Jul 2009, 00:01
Contact:

Re: ICE Topo - Adaptative Subdivision

Post by guillaume » 17 Apr 2011, 20:30

origin wrote:Thanks a ton!
I suppose I should avoid repeat node at all cost (no multithreading?) ?
Your welcome :).

About the Repeat node, it depends. For example in your compound, the main repeat node will not repeat too many time (the user will keep it at one or two times) and so its not a big problem. But in the "Fill Poly IDs Array to subdivide" the repeat time is dependent of the point count. So on big mesh it will be very expensive. Sometime it is not possible to avoid it, but if possible, avoid it ;). The repeat node is an execution type node. That means that it will output some ICE evaluations to Softimage (using the Set Data node). Each time a set data is executed, the attribute value stored in the polygon mesh (or point cloud or null) will be updated. This mechanism is optimized but can't be as fast as just doing some pure multi-treaded ICE evaluations between two nodes.

To answer your question about the multi-threading of the repeat node, it is half yes and half no :). The repeat node will just ... repeat the same execution branch several times. Of course it can't distribute each repetition in its own thread as next repetition is dependent of the previous one and so can't be done in parallel, but inside each repetition, multi-threading will be handle if possible.

Guillaume

gfxman
Posts: 92
Joined: 28 Mar 2011, 15:14

Re: ICE Topo - Adaptative Subdivision

Post by gfxman » 17 Apr 2011, 21:06

That's great, you're here "helping" people with their compound!
I've read that you're the main "ice modelling developer" is that right?

I have a couple of question and suggestion, i hope you don't mind ( really big OT here, mods!)

The whole ice / compound idea,as it was in the first iteration was very community - user generated tools - related; and it could have it worked a lot to let the user develop for other people, and make xsi grow by itself.
The " upload to sofimage " idea was simply genius, and i can't really understand why, they rip it away....
All the compounds, soon get lost in the cloud, and that's a fact.
A central site, to upload / download, compounds and revision, would be so great, for people like me, that can't really "code in ice" and would multiply the value of xsi as multipurpose tool.

The second thing a would like to ask is why, there is so little support to the new ice nodes.
Just 5 scenes.
Just the videos you made ( they're not official by Softimage i suppose ) no real tutorial.
So little default compounds given to the user to understand what's going on.

That's the big mistake you're making: too much potential but so scarce support.

I so easy for some of you, to code new tools in ice, why dont' you just integrate them in the software? Even without a proper documentation, they would be better then nothing; and olso these user compound, would be very usefull, as a full integrated tool by default, or not?

Second thing:

The ice idea, turned softimage from an animation/modelling station, to a special effect / phisic simulator; no real love was put in the modelling tools, animation mixer ( are them perfect to you ? ) or fx tree in the last 3 years.

But it would be so easy for you and 2 or 3 other people like heldge, to boost the modelling set in less then a year.
I hoped even to see a lot of user modelling plugin ( a lot of witch are not working any more..) converted and integrated in xsi: i think you can make a better taper or thinkness tool in a second, with your skill.. maybe even a cap tool.... witch i'm waiting as a basic tool in xsi for 10 years now....

Third thing:
Xsibase is dying. The people who used to run it, they're lost interest, as life goes on. si-community is an answer to that, but the community is too litlle to be so splitted. We need a modo-like, support site.

The forum
The tutorial
The central compound uploda/download
The info about the tecnology is going to come in the future

It cant' be don in the area, you know that.
Regars,

gfxman


Moderator edit: As this truly is a really big OT,
I will try to follow this & move your post and the following ones
to their own thread if the situation warrants this... - HB
;)

User avatar
guillaume
Posts: 41
Joined: 19 Jul 2009, 00:01
Contact:

Re: ICE Topo - Adaptative Subdivision

Post by guillaume » 17 Apr 2011, 22:23

gfxman wrote:That's great, you're here "helping" people with their compound!
I've read that you're the main "ice modelling developer" is that right?
I'm one of the main dev yes.
gfxman wrote:The second thing a would like to ask is why, there is so little support to the new ice nodes.
Just 5 scenes.
Just the videos you made ( they're not official by Softimage i suppose ) no real tutorial.
So little default compounds given to the user to understand what's going on.

That's the big mistake you're making: too much potential but so scarce support.
Will try to do better next time.
gfxman wrote: I so easy for some of you, to code new tools in ice, why dont' you just integrate them in the software? Even without a proper documentation, they would be better then nothing; and olso these user compound, would be very usefull, as a full integrated tool by default, or not?
Because it is not always so easy.

Now my turn to ask some questions.

Did you take a look at the few sample scenes and compounds. Do you understand how they are working ? If yes, that's great, but if not feel free to ask question on public forums. I'm sure some people will help you.

Before being a dev at Autodesk, I was a user trying to help others (on my spare time) on various forums. I'm keeping the same behaviour, but if every time I say something I've got this kind of answer, it will be hard for me to continue this way. I hope you understand it.

Sincerly,

Guillaume Laforge

gfxman
Posts: 92
Joined: 28 Mar 2011, 15:14

Re: ICE Topo - Adaptative Subdivision

Post by gfxman » 18 Apr 2011, 10:03

Before being a dev at Autodesk, I was a user trying to help others (on my spare time) on various forums. I'm keeping the same behaviour, but if every time I say something I've got this kind of answer, it will be hard for me to continue this way. I hope you understand it.

Sincerly,

Guillaume Laforge
I'm very sorry, maybe i sounded harsh, but i didn't want to be, at all.
Really.

The softimage devolping team is like a mythological thing, and it's such an event i can get in touch to them, directly, that i took my chace to tell you what i thought would be a great help to softimage, as a product, not only to me, like a user.

Sorry if i bodered you. I hoped for a different answer but i suppose that the only one you can / want to give me.
My apologies, again.

p.s.
there's noway we're getting back the centralized compound upload/download thing he ? :D
Ok ok, i'm leaving!

User avatar
Hirazi Blue
Administrator
Posts: 5107
Joined: 04 Jun 2009, 12:15

Re: ICE Topo - Adaptative Subdivision

Post by Hirazi Blue » 18 Apr 2011, 10:10

I don't think there is any need for apologies...
To (hopefully) conclude this OT side-track of this thread:
as long as Autodesk sincerely (and to state the obvious: wrongly IMHO) believes
the download section at the Area is sufficient,
nothing much will change in that respect, I'm afraid...
;)
Stay safe, sane & healthy!

User avatar
guillaume
Posts: 41
Joined: 19 Jul 2009, 00:01
Contact:

Re: ICE Topo - Adaptative Subdivision

Post by guillaume » 18 Apr 2011, 15:28

No problems gfxman ! :)

@ Hirazi Blue : Maybe you could conclude this OT by creating a specific thread for a centralized and good place for ICE compounds (I 100% agree to this request) ?

Cheers

Guillaume

User avatar
ActionArt
Posts: 853
Joined: 25 Nov 2010, 18:23
Location: Canada

Re: ICE Topo - Adaptative Subdivision

Post by ActionArt » 18 Apr 2011, 15:59

Thanks Guillaume, your insight and help on compounds is greatly appreciated.

BTW, I have to say ICE is incredibly complex and well made! Great work to say the least!!!!!

And origin, thanks for starting this, it's a VERY useful tool!

User avatar
Tekano
Posts: 488
Joined: 09 Jun 2009, 14:49
Location: London, UK

Re: ICE Topo - Adaptative Subdivision

Post by Tekano » 18 Apr 2011, 16:45

yes - this place is as good as any, viewforum.php?f=19 its just not uptodate or has *all* available submitted compounds but its still online right now, is usable and can accept user attachments which is better than xsibase or 'the area'. I recon a cross pollination from rray.de and a dig out of old ICE compounds backup folder then we may be getting it into a better shape than it currently is. I too miss the old softimage website for centralised ICE compounds, it had a lot of initial momentum that AD simply, for want of a better word, *destroyed* but yes it is very apparent that AD are not interested in or have the resourses to deliver what was already in place, so we will have to make do with our own home grown efforts. next week Ive some free time so I promise to raid my backups folder and try and beef up the ICE downloads section with already downloaded ICE compounds :-bd
Gossip is what no one claims to like, but everybody enjoys.

User avatar
gustavoeb
Moderator
Posts: 587
Joined: 21 Jul 2010, 00:33
Skype: gustavoboehs

Re: ICE Topo - Adaptative Subdivision

Post by gustavoeb » 09 Oct 2012, 22:00

Hi Piotrek,

Due to current project needs I´ve downloaded your compound and modified it to support subdivision based on distance to camera and geometry. For camera I have nothing fancy like considering the frustum, rasterized polygon size or anything like that. But its good enough for many cases.

I´m sharing the compound here, if you dont mind... If you do, just warn me and I shall remove it:
https://dl.dropbox.com/u/39280733/ooAda ... sicompound
Attachments
Capture.JPG
Gustavo Eggert Boehs
Blog: http://www.gustavoeb.com.br/

User avatar
AlexanderM
Posts: 28
Joined: 10 Jun 2009, 17:13
Contact:

Re: ICE Topo - Adaptative Subdivision

Post by AlexanderM » 10 Oct 2012, 01:54

It would be good to add adaptive poly reduction mode, in addition. Or as a separate tool

User avatar
gustavoeb
Moderator
Posts: 587
Joined: 21 Jul 2010, 00:33
Skype: gustavoboehs

Re: ICE Topo - Adaptative Subdivision

Post by gustavoeb » 10 Oct 2012, 15:48

it would be interesting... probably would only be useful for someone using data from scanned 3d models I guess
Gustavo Eggert Boehs
Blog: http://www.gustavoeb.com.br/

Post Reply

Who is online

Users browsing this forum: No registered users and 21 guests