-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kristian Rother
committed
Nov 1, 2024
1 parent
691832a
commit 85dd74a
Showing
8 changed files
with
82 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,65 +30,64 @@ Next, try the examples and challenges. | |
|
||
| Example | Topic | | ||
|-----------|--------| | ||
| [Creating Images](grayscale/) | Create a grayscale image | | ||
| [Color](rgb/) | Create a RGB image | | ||
| [Random Blur](random_blur/) | Create random pixels | | ||
| [Flags](flags/) | Slicing | | ||
| [Repeat](repeat/) | Repeating tiles | | ||
| [Creating Images](grayscale/README.rst) | Create a grayscale image | | ||
| [Color](rgb/README.rst) | Create a RGB image | | ||
| [Random Blur](random_blur/README.rst) | Create random pixels | | ||
| [Flags](flags/README.rst) | Slicing | | ||
| [Repeat](repeat/README.rst) | Repeating tiles | | ||
|
||
|
||
## Elementary Geometry | ||
|
||
| Example | Topic | | ||
|-----------|--------| | ||
| [Stars](stars/) | Indexing | | ||
| [Lines](lines/) | Arithmetics | | ||
| [Gradient](gradient/) | Linear space | | ||
| [Triangles](triangles/) | Matrix operations | | ||
| [Circles](circles/) | Euclidean Distances | | ||
| [Mask](mask/) | Indexing | | ||
| [Meme Generator](memegen/) | Adding text with Pillow | | ||
| [Stars](stars/README.rst) | Indexing | | ||
| [Lines](lines/README.rst) | Arithmetics | | ||
| [Gradient](gradient/README.rst) | Linear space | | ||
| [Triangles](triangles/README.rst) | Matrix operations | | ||
| [Circles](circles/README.rst) | Euclidean Distances | | ||
| [Mask](mask/README.rst) | Indexing | | ||
| [Meme Generator](memegen/README.rst) | Adding text with Pillow | | ||
|
||
## Machine Learning | ||
|
||
| Example | Topic | | ||
|-----------|--------| | ||
| [K-Means](kmeans/) | Clustering | | ||
| [Decision Tree](dtree/) | Color prediction | | ||
| [Convolution](convolution/) | CNN kernel | | ||
| [Monte Carlo](montecarlo/) | Sampling | | ||
| [K-Means](kmeans/README.rst) | Clustering | | ||
| [Decision Tree](dtree/README.rst) | Color prediction | | ||
| [Convolution](convolution/README.rst) | CNN kernel | | ||
| [Monte Carlo](montecarlo/README.rst) | Sampling | | ||
|
||
## Effects | ||
|
||
| Example | Topic | | ||
|-----------|--------| | ||
| [Rotation](rotate/) | Rotation figure | | ||
| [Shadow](shadow/) | shadow using a mask | | ||
| [Warhol](warhol/) | Color channels | | ||
| [Puzzle](puzzle/) | vstack and hstack | | ||
| [Contour Lines](contour/) | Gaussian Mixture | | ||
| [Edge Detection](sobel/) | Sobel Operator | | ||
| [Dragon Curve](dragon_curve/) | Recursive graphics | | ||
| [Mandelbrot](mandelbrot/) | Recursive graphics | | ||
| [Hexpanda](hexpanda/) | Hexbin plot | | ||
| [Flower Assembly](flower_movie/) | Animation | | ||
| [Vortex](vortex/) | Animation | | ||
| [Sand blows away](sand/) | Animation | | ||
| [Star Wars Titles](starwars/) | Animation | | ||
| [Rotation](rotate/README.rst) | Rotation figure | | ||
| [Shadow](shadow/README.rst) | shadow using a mask | | ||
| [Warhol](warhol/README.rst) | Color channels | | ||
| [Puzzle](puzzle/README.rst) | vstack and hstack | | ||
| [Contour Lines](contour/README.rst) | Gaussian Mixture | | ||
| [Edge Detection](sobel/README.rst) | Sobel Operator | | ||
| [Dragon Curve](dragon_curve/README.rst) | Recursive graphics | | ||
| [Mandelbrot](mandelbrot/README.rst) | Recursive graphics | | ||
| [Hexpanda](hexpanda/README.rst) | Hexbin plot | | ||
|
||
## Animations | ||
|
||
---- | ||
|
||
## More Generative Artists | ||
|
||
* [Beetlesbot by Bleeptrack](https://beetles.bleeptrack.de/) | ||
* [Flowerbot by Bleeptrack](https://blptrck.uber.space/flower/) | ||
* [GalaxyKate](http://galaxykate.com/) | ||
| Example | Topic | | ||
|-----------|--------| | ||
| [Flower Assembly](flower_movie/README.rst) | puzzle | | ||
| [Vortex](vortex/README.rst) | rotating parts | | ||
| [Sand blows away](sand/README.rst) | moving particles | | ||
| [Star Wars Titles](starwars/README.rst) | text moving in 3D | | ||
| [Infinity Blossom](blossom/README.rst) | depth illusion | | ||
| [Thank You](thank_you/README.rst) | scripted assembly | | ||
|
||
---- | ||
|
||
## Contact | ||
|
||
(c) 2019 Dr. Kristian Rother (`[email protected]`) | ||
(c) 2024 Dr. Kristian Rother (`[email protected]`) | ||
|
||
Distributed under the conditions of the MIT License. See `LICENSE` for details. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
body { | ||
margin-top: 250px; | ||
margin-bottom: 250px; | ||
background-image: url("academis_header.png"); | ||
background-repeat: no-repeat; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
:hide-toc: | ||
|
||
Graphics with NumPy | ||
=================== | ||
|
||
|
||
.. figure:: images/title.png | ||
:alt: title image | ||
|
||
.. topic:: Introduction | ||
In this tutorial you find NumPy exercises that create images. | ||
It is meant as a gentle introduction to NumPy. It assumes that you have | ||
made your first steps with Python already. To get the best out of it, | ||
put it into practice immediately: | ||
|
||
In this tutorial you find NumPy exercises that create images. | ||
It is meant as a gentle introduction to NumPy. It assumes that you have | ||
made your first steps with Python already. To get the best out of it, | ||
put it into practice immediately: | ||
**paint things – create art – have fun!** | ||
|
||
**paint things – create art – have fun!** | ||
|
||
---- | ||
|
||
Installation | ||
------------ | ||
|
@@ -90,38 +88,33 @@ Effects | |
dragon_curve/README.rst | ||
mandelbrot/README.rst | ||
hexpanda/README.rst | ||
|
||
---- | ||
|
||
Animations | ||
---------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
flower_movie/README.rst | ||
vortex/README.rst | ||
sand/README.rst | ||
starwars/README.rst | ||
blossom/README.rst | ||
logo/README.rst | ||
|
||
---- | ||
|
||
More Generative Artists | ||
----------------------- | ||
|
||
- `Beetlesbot by Bleeptrack <https://beetles.bleeptrack.de/>`__ | ||
- `Flowerbot by Bleeptrack <https://blptrck.uber.space/flower/>`__ | ||
- `GalaxyKate <http://galaxykate.com/>`__ | ||
thank_you/README.rst | ||
|
||
---- | ||
|
||
.. topic:: License | ||
|
||
© 2023 Dr. Kristian Rother (`[email protected]`) | ||
© 2024 Dr. Kristian Rother (`[email protected]`) | ||
|
||
Usable under the conditions of the MIT License. | ||
See :download:`LICENSE` for details. | ||
|
||
---- | ||
|
||
References | ||
---------- | ||
|
||
`The Brandenburg Gate | ||
image <https://commons.wikimedia.org/wiki/File:Brandenburger_Tor_abends.jpg>`__ | ||
is by Thomas Wolf, www.foto-tw.de / Wikimedia Commons / CC BY-SA 3.0 | ||
Teaching Programming | ||
.. topic:: References | ||
|
||
`The Brandenburg Gate | ||
image <https://commons.wikimedia.org/wiki/File:Brandenburger_Tor_abends.jpg>`__ | ||
is by Thomas Wolf, www.foto-tw.de / Wikimedia Commons / CC BY-SA 3.0 |