Jump to: navigation, search

Difference between revisions of "Bookmarks"

(Algorithms)
(Academics)
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Tech ==
 
== Tech ==
 +
 +
=== Academics ===
 +
 +
[[File:BodyParts3D Anatomography.png|400px]]
 +
 +
database, online, body parts, anatomy
 +
* http://lifesciencedb.jp/bp3d/
 +
* https://dbarchive.biosciencedbc.jp/en/bodyparts3d/desc.html
 +
 +
 +
[[ File:Vm-580.jpg|400px]]
 +
 +
'''Virtual marionette''' - PhD research on digital puppetry - http://www.grifu.com/vm/
 +
 +
 +
[[File:Dyna teaser resize.png|400px]]
 +
 +
'''Dyna''' - A Model of Dynamic Human Shape in Motion - http://dyna.is.tue.mpg.de/
 +
 +
 +
[[File:Strain Based Dynamics donut.png|400px]]
 +
 +
[[File:Strain Based Dynamics skirt.png|400px]]
 +
 +
'''Strain Based Dynamics''' - [http://matthias-mueller-fischer.ch/publications/strainBasedDynamics.pdf pdf] - better skinning technique for skinning, implementation by [https://github.com/nobuo-nakagawa/strain_based_dynamics nobuo-nakagawa] on github.
  
 
=== Algorithms ===
 
=== Algorithms ===
Line 17: Line 42:
  
 
by [http://inconvergent.net/generative/fractures/ inconvergent], source on github: https://github.com/inconvergent/fracture
 
by [http://inconvergent.net/generative/fractures/ inconvergent], source on github: https://github.com/inconvergent/fracture
 +
 +
==== Mesh as sound ====
 +
 +
<html>
 +
<video width="400" height="400" controls>
 +
  <source src="/images/2/24/Mesh-audacity.mp4" type="video/mp4">
 +
  Your browser does not support the video tag.
 +
</video>
 +
</html>
 +
 +
by [http://tsulej.tumblr.com/ Tomasz Sulej]
 +
 +
process [https://www.facebook.com/groups/1693115990944080/permalink/1780379192217759/ ref]:
 +
 +
# Extract vertex information (v lines)
 +
# Normalize to byte values (-128, 127)
 +
# Pack into binary file. First x axis, then y and z
 +
# Import to audacity as 8bit unsigned int
 +
# Apply effect
 +
# Export as 8bit uint
 +
# Convert back to floating point numbers and replace 'v' lines respectively.
 +
 +
''I did it in Processing which parses obj very well.''
 +
 +
[https://github.com/tsulej/GenerateMe/tree/master/Obj2Raw Obj2Raw] on github
  
 
=== Ogre3D ===
 
=== Ogre3D ===
Line 107: Line 157:
 
== Projects==
 
== Projects==
  
 +
* [http://slapmybot.tumblr.com/ Slap my bot], tumblr feed by [http://xuv.be xuv]
 
* [http://neri.media.mit.edu/ Neri Oxman], organic-looking clothes
 
* [http://neri.media.mit.edu/ Neri Oxman], organic-looking clothes
 
* [https://vimeo.com/156717624 KRIEMHILD] by [https://vimeo.com/golemklon GolemKlonVIII]
 
* [https://vimeo.com/156717624 KRIEMHILD] by [https://vimeo.com/golemklon GolemKlonVIII]
Line 114: Line 165:
 
* [https://dashrava.itch.io/mutilate Mutilate-a-Doll 2] - a sadic game on itch.io
 
* [https://dashrava.itch.io/mutilate Mutilate-a-Doll 2] - a sadic game on itch.io
 
* [https://xra.itch.io/memory-of-a-broken-dimension Memory of a Broken Dimension] - a glitch exploration
 
* [https://xra.itch.io/memory-of-a-broken-dimension Memory of a Broken Dimension] - a glitch exploration
 +
* [http://matter.media.mit.edu/environments/details/rottlace Rottlace] - generated masks
  
 
== Artists ==
 
== Artists ==
Line 128: Line 180:
  
 
[[File:Nam June Paik K-456 350-x640.jpg|200px]]
 
[[File:Nam June Paik K-456 350-x640.jpg|200px]]
 +
 +
[https://www.judithdeschamps.com Judith Deschamps] - Ne plus être dans votre regard, c’est disparaitre.
 +
 +
[[File:Deschamps3 VARIATION-300x168.jpg|200px]]
 +
 +
Man Anam Ke Rostam Bovad Pahlavan/Teaser - [http://www.selon-lheure.com/ Ali Moini]
 +
 +
<html>
 +
<iframe src="https://player.vimeo.com/video/195175485?title=0&portrait=0&byline=0" width="400" height="225" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
 +
</html>
  
 
== Theorics==
 
== Theorics==
 +
 +
=== Fragonard ===
 +
 +
<html>
 +
<iframe width="560" height="315" src="https://www.youtube.com/embed/PfDB8aye6qo" frameborder="0" allowfullscreen></iframe>
 +
</html>
 +
 +
http://musee.vet-alfort.fr/
 +
 +
=== Autres ===
  
 
* Tim Urban
 
* Tim Urban

Latest revision as of 01:09, 28 May 2018

Tech

Academics

BodyParts3D Anatomography.png

database, online, body parts, anatomy


Vm-580.jpg

Virtual marionette - PhD research on digital puppetry - http://www.grifu.com/vm/


Dyna teaser resize.png

Dyna - A Model of Dynamic Human Shape in Motion - http://dyna.is.tue.mpg.de/


Strain Based Dynamics donut.png

Strain Based Dynamics skirt.png

Strain Based Dynamics - pdf - better skinning technique for skinning, implementation by nobuo-nakagawa on github.

Algorithms

Fusion4D

Fusion4d.jpg

Real-time Performance Capture of Challenging Scenes

youtube - PDF

fractures

Fractures-a.png

by inconvergent, source on github: https://github.com/inconvergent/fracture

Mesh as sound

by Tomasz Sulej

process ref:

  1. Extract vertex information (v lines)
  2. Normalize to byte values (-128, 127)
  3. Pack into binary file. First x axis, then y and z
  4. Import to audacity as 8bit unsigned int
  5. Apply effect
  6. Export as 8bit uint
  7. Convert back to floating point numbers and replace 'v' lines respectively.

I did it in Processing which parses obj very well.

Obj2Raw on github

Ogre3D

examples

 


Tech demos

   

Physical engines

home made


newton dynamics


bullet integration


physx integration

HMD

Snippets

Blender

Humanoïds

tools


assets

beta

Unreal Engine 4

(dead track)

Projects

Artists


Robot K-456 – Nam June Paik (Korean) & Shuya Abe (Japanese), 1964

Nam June Paik K-456 350-x640.jpg

Judith Deschamps - Ne plus être dans votre regard, c’est disparaitre.

Deschamps3 VARIATION-300x168.jpg

Man Anam Ke Rostam Bovad Pahlavan/Teaser - Ali Moini

Theorics

Fragonard

http://musee.vet-alfort.fr/

Autres

Math