2023W4:Online

From cs
Jump to: navigation, search


MSc 2 IAP 2023: Rhizome 2.0

Cs ws4.png


TUTORIALS 2023

HRI
Session 1 Lecture: https://drive.google.com/file/d/1nhGMUYLI0oi0SPNLYx0dGN0UaE_CNET0/view

Computer Vision
Session 2 Tutorial: https://drive.google.com/file/d/1rPnxsWQaW1IRtes5RQ6TmdgNBLZv9tl8/view
Session 2 Tarique's graduate project: https://drive.google.com/file/d/1s5eq1-F1dEbsUQxBRLxtMhj0EmdbpaC6/view
Session 2 Lecture: https://drive.google.com/file/d/1-JPSfw0lRXBNazuReuBOI-lX9McH5XOV/view
1 Image and Convolution: https://www.youtube.com/watch?v=ple_Vv2QEZ4
2 Deep Learning for Computer Vision: https://www.youtube.com/watch?v=vJSKy98oE04
3 Convolutional Neural Network: https://www.youtube.com/watch?v=QpngqKz7Hgw
Repository: https://github.com/caspervanengelenburg/1on1-prototyping-IA-CV-sessions
Jupyter and Colab Notebooks: https://cs231n.github.io/python-numpy-tutorial/#jupyter-and-colab-notebooks
Basic data types in Python: https://cs231n.github.io/python-numpy-tutorial/#basic-data-types

Grasshopper scripts
Scripts 1-5 (zip): https://drive.google.com/file/d/1Vhz-wDJiM_T4D2zE6_9DTUxgVwctjbgZ/view
Tutorial script 1: https://drive.google.com/file/d/1W8mxtlWt0Z537DyoK4hDh31TJvFwdoRg/view
Tutorial script 2: https://drive.google.com/file/d/1gLUhmWN3JMnHvm_Rf6ccjjXHYSC0aSiQ/view
Tutorial script 3 part 1: https://drive.google.com/file/d/1YFlHZZbcR4jqjsAp0Mu_XtwheZi7180j/view
Tutorial script 3 part 2: https://drive.google.com/file/d/100CZIt7VR6IlctmfIPKjXMgUpvBEfSO9/view
Tutorial script 4: https://drive.google.com/file/d/1ACWxvlBCXc6wRA97GPV94FPZyXbn8HE4/view
Tutorial script 5: https://drive.google.com/file/d/1ZTR9p0pHN4m4rZPbN4ksA_Ide0YRc36O/view
Dendro script: https://drive.google.com/file/d/1DjOcwpeqjzrnUR2aSeOCQ0TM3Jw0J6TR/view

TUTORIALS 2019-22

The following tutorials give a brief introduction to certain tools in Rhino and Grasshopper. The tutorials consist of Rhino/Grasshopper files as well as videos. The videos aim to explain the design on a strategic level by visualising it diagrammatically. The Grasshopper files show how it can be scripted by creating titled groups and subgroups to order the file, with additional textual descriptions. In many of the groups, a visualisation subgroup is added which can be turned on or off.

Grasshopper intro
Grasshopper Part 1: https://drive.google.com/file/d/1fyfdGbfD9xPGMWtaJ3Yd2YyctjqHIwuj/view
Grasshopper Part 2: https://drive.google.com/file/d/1zfPRnEY_FXBJ0o5fhag-KPMnhT3JVlFd/view
Scripts used: Download zip

Voronoi control



Acoustic shoot and principles



Toolpaths horizontally



Milling with the robot part 1



Milling with the robot part 2



Milling documentation


Grasshopper Conventions


Described here are some drawing conventions used in the Robotic Building Lab for Grasshopper. The aim is to create clear organisational structures and descriptions of how and why a script is developed in a certain way so that it is easy to understand. A template using these conventions is provided here:
File:1.GH Conventions-GH Template.gh


Organisation


The Grasshopper scripts are organised according to specific principles considering the layout. Every script starts with a title and abstract:

1.GH Conventions-1.0.png

This should be a general description of what the script does and for what purpose. Make sure to save the file while in this view so this is visible when the file is opened.

The components are organised and ordered in groups and subgroups. Every group has at least a title. If required it also contains a textual description in a panel. In general, the groups are coloured white. The smallest groups are titled in the group header, a level above that by a scribble with font size 25, and the main groups with a scribble with font size 50. All the wires which reduce the readability of the script are set to display 'Hidden'.

1.GH Conventions-2.0.png

The panels containing the textual descriptions are also white:

1.GH Conventions-3.0.png

Data Management


Often the script is part of a sequence of scripts, each with a specific task. To create a fluid workflow and be sure the correct data is referred to, certain rules are maintained. Geometry is baked using the baking components of the plug-in Elefront. A layer and a name is assigned, so that the geometry is easy to be referred to in succeeding scripts and it is overwritten each time the component bakes.
1.GH Conventions-4.0.png

In this way, the geometry can be referred to using the geometry pipeline, and is updated accordingly. Always use the geometry pipeline and the combination between Rhino- and Grasshopper files, since internalizing geometry in a Grasshopper container greatly affects the speed of the script.

1.GH Conventions-5.0.png