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
- Host: GitHub
- URL: https://github.com/moritzsalla/cci-advanced-visualization
- Owner: moritzsalla
- Created: 2020-03-28T18:20:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-27T21:08:45.000Z (over 5 years ago)
- Last Synced: 2025-02-16T06:24:46.408Z (12 months ago)
- Topics: matplotlib, numpy, openframeworks, python, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 124 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```