An open API service indexing awesome lists of open source software.

https://github.com/moritzsalla/cci-advanced-visualization

Classwork for Mick Grierson's module at the Creative Computing Institute
https://github.com/moritzsalla/cci-advanced-visualization

matplotlib numpy openframeworks python tensorflow

Last synced: 10 months ago
JSON representation

Classwork for Mick Grierson's module at the Creative Computing Institute

Awesome Lists containing this project

README

          

The submissions are located in `submission/` with their respective readme files.

```
├── README.md
├── canvas
│   ├── deathstar
│   │   ├── README.md
│   │   ├── index.html
│   │   └── screenshot.png
│   ├── geometry
│   │   ├── img-1.png
│   │   ├── img-2.png
│   │   └── index.html
│   ├── image-filter
│   │   ├── create-image-data-canvas
│   │   │   ├── index.html
│   │   │   └── screenshot.png
│   │   ├── image-filter-blur
│   │   │   ├── README.md
│   │   │   ├── blur.js
│   │   │   ├── img.jpg
│   │   │   ├── index.html
│   │   │   ├── screenshot.png
│   │   │   └── style.css
│   │   └── image-filter-bw
│   │   ├── README.md
│   │   ├── bw.js
│   │   ├── img.jpg
│   │   ├── index.html
│   │   ├── screenshot.png
│   │   └── style.css
│   ├── maximilian-canvas
│   │   ├── img-1.png
│   │   └── index.html
│   ├── polar-waveform
│   │   ├── img-1.png
│   │   ├── img-2.png
│   │   └── index.html
│   └── starfield
│   ├── README.md
│   ├── index.html
│   └── screenshot.png
├── exam-prep
│   ├── README.md
│   └── mock.md
├── js
│   ├── cheetsheets
│   │   ├── HTML5_Canvas_Cheat_Sheet.pdf
│   │   ├── davechild_javascript.pdf
│   │   ├── javascript-cheat-sheet-v1.pdf
│   │   └── wsu-js-cheat-sheet-long.pdf
│   └── shaders
│   ├── README.md
│   ├── build
│   │   ├── Makefile
│   │   ├── Project.xcconfig
│   │   ├── addons.make
│   │   ├── bin
│   │   │   ├── build.app
│   │   │   │   └── Contents
│   │   │   │   ├── Frameworks
│   │   │   │   │   └── libfmodex.dylib
│   │   │   │   ├── Info.plist
│   │   │   │   ├── MacOS
│   │   │   │   │   ├── build
│   │   │   │   │   └── libfmodex.dylib
│   │   │   │   ├── PkgInfo
│   │   │   │   ├── Resources
│   │   │   │   │   └── icon.icns
│   │   │   │   └── _CodeSignature
│   │   │   │   └── CodeResources
│   │   │   ├── buildDebug.app
│   │   │   │   └── Contents
│   │   │   │   ├── Frameworks
│   │   │   │   │   └── libfmodex.dylib
│   │   │   │   ├── Info.plist
│   │   │   │   ├── MacOS
│   │   │   │   │   └── buildDebug
│   │   │   │   ├── PkgInfo
│   │   │   │   ├── Resources
│   │   │   │   │   └── icon-debug.icns
│   │   │   │   └── _CodeSignature
│   │   │   │   └── CodeResources
│   │   │   └── data
│   │   │   ├── 0
│   │   │   │   ├── Bildschirmfoto\ 2020-03-01\ um\ 17.45.07.png
│   │   │   │   ├── shader.frag
│   │   │   │   └── shader.vert
│   │   │   ├── 1
│   │   │   │   ├── Bildschirmfoto\ 2020-03-01\ um\ 17.44.11.png
│   │   │   │   ├── shader.frag
│   │   │   │   └── shader.vert
│   │   │   └── 2
│   │   │   ├── Bildschirmfoto\ 2020-03-01\ um\ 17.43.38.png
│   │   │   ├── shader.frag
│   │   │   └── shader.vert
│   │   ├── build.xcodeproj
│   │   │   ├── project.pbxproj
│   │   │   ├── project.xcworkspace
│   │   │   │   ├── contents.xcworkspacedata
│   │   │   │   ├── xcshareddata
│   │   │   │   │   ├── IDEWorkspaceChecks.plist
│   │   │   │   │   └── WorkspaceSettings.xcsettings
│   │   │   │   └── xcuserdata
│   │   │   │   └── moritzsalla.xcuserdatad
│   │   │   │   └── UserInterfaceState.xcuserstate
│   │   │   └── xcshareddata
│   │   │   └── xcschemes
│   │   │   ├── build\ Debug.xcscheme
│   │   │   └── build\ Release.xcscheme
│   │   ├── config.make
│   │   ├── obj
│   │   │   └── osx
│   │   │   └── Release
│   │   │   └── src
│   │   │   ├── main.d
│   │   │   └── ofApp.d
│   │   ├── openFrameworks-Info.plist
│   │   └── src
│   │   ├── main.cpp
│   │   ├── ofApp.cpp
│   │   └── ofApp.h
│   ├── screenshot.jpg
│   ├── screenshot2.jpg
│   └── screenshot3.jpg
├── shaders
│   ├── README.md
│   ├── shader-01
│   │   ├── main.frag
│   │   └── screenshot.png
│   ├── shader-02
│   │   ├── main.frag
│   │   └── screenshot.png
│   ├── shader-03
│   │   ├── main.frag
│   │   └── screenshot.png
│   ├── shader-04
│   │   ├── main.frag
│   │   └── screenshot.png
│   ├── shader-05
│   │   ├── main.frag
│   │   └── screenshot.png
│   ├── shader-06
│   │   ├── main.frag
│   │   └── screenshot.png
│   ├── shader-07
│   │   ├── main.frag
│   │   └── screenshot.png
│   └── shader-08
│   ├── main.frag
│   └── screenshot.png
└── submission
├── image-processing-numpy
│   ├── Pipfile
│   ├── Pipfile.lock
│   ├── README.md
│   ├── data-albatross
│   │   ├── Black_Footed_Albatross_0001_796111.jpg
│   │   └── Black_Footed_Albatross_0090_796077.jpg
│   ├── img_align_celeba
│   │   ├── 000001.jpg
│   │   └── 000100.jpg
│   ├── processing-images-albatross.ipynb
│   ├── processing-images.ipynb
│   └── requirements.txt
├── style-transfer
│   ├── Pipfile
│   ├── Pipfile.lock
│   ├── README.md
│   ├── aerial-pics
│   │   ├── aerialpics-style-transfer.ipynb
│   │   ├── dataset
│   │   │   ├── planepic001.jpeg
│   │   │   └── planepic007.jpeg
│   │   └── exports
│   │   ├── export-1.jpg
│   │   ├── export-2.jpg
│   │   ├── export-3.jpg
│   │   └── export-4.jpg
│   ├── deepdream
│   │   ├── deepdream.ipynb
│   │   ├── export-1.jpeg
│   │   └── export-5.jpeg
│   └── fighterplane
│   ├── export-1.jpg
│   ├── export-2.jpg
│   ├── export-3.jpg
│   ├── export-4.jpg
│   └── fighterplane_Neural_Style_Transfer.ipynb
└── web-scraper
├── Pipfile
├── Pipfile.lock
├── README.md
├── screenshot1.jpg
├── screenshot2.jpg
├── screenshot3.jpg
├── screenshot4.jpg
├── webscraper-ext.py
└── webscraper.py
```