Gents and Ladies,

I'm looking to write a bit of software that will end up drawing a human frame (which can be configured with various parameters), and the plan is to have some sort of clothing placed on the dummy.

I've looked at Blender, and OpenGL libraries as well as other rendering and physics engines, I'm not looking for you to tell me how to do this, but mainly I'm wondering what libraries are out there to do this sort of thing?

So there'll be a pattern for the clothing in 2d, then the system, (at least in theory) will be able to translate that in to a 3d representation of a shirt for example? And then place that on the human frame. I know there's a lot of work I need to do for this, however in terms of rendering the clothing on to the frame, and accounting for collisions and how it drops around the frame etc, I've been googling, and have found a few bits, but was wondering if there were C++ libraries out there that would do that.

I'm developing using Visual C++ 2010, and the target environment is a Windows box.

Either that, or i'm going to need to take some physics lessons.

Thanks for your patience.

Welshboy

link|improve this question

Cloth physics are mental! You need to define how the cloth interacts with it self. Also need to do lots of intersection tests with what ever it is around. Not that simple really – thecoshman Mar 9 '11 at 14:31
That's a lot of work. Things like that have been done at Miralab of university geneva (www.miralab.ch). I don't know if they have released their code, and the website for the E-Tailor project seems to be down. But perhaps you will find something. – Axel Mar 9 '11 at 14:35
feedback

3 Answers

up vote 4 down vote accepted

Unfortunately, developing a system like the one your talking about would be insanely difficult. On the plus side, there are alot of easy to use technologies that will help you attain your goal hopefully.

Generally, the way that this type of thing works is as follows: You make some 3d asset in a modeling program such as Blender, 3ds max, Maya, Softimage, etc, and then use this in your program/game. You can think of these programs as just spitting out a bunch of 3d coordinates, which your program, with the help of OpenGL or DirectX can load into memory and render.

Modeling and loading assets is of course the alternative to developing algorithms to generate points. This is what it seems like your trying to accomplish.

The bad news is that clothing is really really complicated. A big part of this is due to the fact that most of it requires simulating cloth dynamics. Another part of the problem is that even if you had a 2d pattern, how would you the manner in which the clothing would adhere to your human model? Is it skin tight? Loose? How will you parameterize that? The placement of the actual clothing on the body is a chore in and of itself as anyone with experience in 3d modeling might tell you.

Nevertheless, some of the industry's brightest professionals are looking for both better ways to simulate cloth, and better ways to automate asset creation.

In summation, the easy answer is that what your trying to do, as interesting and noble as it may be, is going to be extremely difficult and may not have the result your looking for.

As for where you can go for more answers:

If your still intersted in finding a way to automate clothing attatchment to models, I would start by looking around academic websites. Look for any computer science departments which have computer graphics research programs. You will find alot of interesting things there.

For more academic type resources look at Game Programming Gems, GPU Programming Gems, and Graphics Programming Gems book series. They feature many good articles that tackle difficult graphics problems such as these.

Another thing you might do is check out blender a little more. There is an interesting project called MakeHuman

http://makehuman.blogspot.com/

That automates the process of developing human models in blender.

There are a couple of tutorials for putting clothing on the models, take a look at this one: http://www.davidjarvis.ca/blender/tutorial-05.shtml

For more tutorials on clothing and cloth simulation in blender, you can always check out

www.blendercookie.com cg.tutsplus.com

I hope some of this has been useful.

link|improve this answer
feedback

From what I remember, cloth is simulated as a mesh of springs which suggests physics libraries for the simulation along with an understanding of the physics of springs/cloth. I've not heard of a physics library tailored to cloth simulation though, but no doubt someone on this site will know of one.

link|improve this answer
+1 for treating cloth as a mesh of springs. Interesting. – Thomas Matthews Mar 9 '11 at 18:46
Applying a Hook-like law whenever there are distance dependent forces is the canonical approach in physics. – datenwolf Mar 10 '11 at 9:26
feedback

except the part that you want to change the dummy while application is running what you want is more or less the example of game engines like Esenthel Engine. the whole idea is to load a mesh for the body and then put a "cloth" (cloth is already defined in most game engines as physical type) on it. but when it come to runtime changes in human frame it becomes a little more tricky since you have to know how you are going to affect the parrameters which is not easy of organic shapes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.