#rtistry — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #rtistry, aggregated by home.social.
-
-
Choosing pixels from a sorted or unsorted copy of a flowfield image depending on the hue of the original image. Anything from blue-green to purple-red gets copied, otherwise we see a sorted version.
-
All 31 days of generative art for #Genuary2025! 👇 👇 👇
#Genuary #Genuary2025 #RStats #Rtistry #GenerativeArt #Python
-
Experimenting with crossview (aka side-by-side stereoscopy).
Just cross your eyes halfway between the pictures until both images overlap one another. Then focus on the central image.
-
I am part of the Great #MastodonMigration from that other site.
I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.
I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.
-
Trees. #generativeart #rtistry
#flametree
Version 2 -
Trees. #generativeart #rtistry
#flametree
Version 1 -
New maths/art blog post! Partly with the goal of demonstrating how awesome #webR is.
I describe making carpet patterns like the image attached, with all of the code running in the browser so you can generate random outputs, change parameters etc.
https://georgemsavva.github.io/creativecoding/posts/modular/
Even runs perfectly well on my crappy phone! It's going to be interesting to see how this alters stats education, reporting etc.
-
Reconstruction of a desert scene with doodle sampling process.
#MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing #desert #lakePowell
-
Meeting of the mountains reconstructed
#MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing
-
Checking in at 4,000 color fills. Still not really recognizable as the source image. My computer's fan is protesting, but why doesn't it like coloring?
#MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing
-
For comparison, not yet looking close to the reference image after 1,000 color fills. Going to let the for loop run on this one for a while and see what happens.
I like these as alternative non-square pixels
#MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing
-
The coloring algorithm is very slow and needs some wiggling. Half-starts still fun to look at.
Issues: shouldn't be filling black, need to fix that.
#MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing
-
Good scribble sunday morning to y'all.
This was made by resampling a drawing lots of times and putting the samples in similar spots to where they would have gone.
Today's goal is to alter the random coloring algorithm to color by reference image instead.
#MastoArt #generativeArt #rtistry #cartoonArt #penAndInk #squiggle #doodle #doodleDrawing
-
I am part of the Great #MastodonMigration from that other site.
I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.
I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.
-
I am part of the Great #MastodonMigration from that other site.
I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.
I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.
-
I am part of the Great #MastodonMigration from that other site.
I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.
I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.
-
I am part of the Great #MastodonMigration from that other site.
I teach and do research at #McMaster University's School of Earth, Environment and Society. My areas of interest are #transportation, #accessibility, #ActiveTravel, #equity, and #policy. I have a strong interest in methods, and my longest love affair has been with #SpatialStatistics and #SpatialDataAnalysis.
I am interested in #writing, and use #Rstats with gusto, professionally and for #Rtistry and #GenerativeArt.
-
Generative art based on the Aizawa attractor.
Drawn with #rstats using my own packages. -
Some more recent generative art made with #RStats 🎨
-
-
A Clifford attractor collapsing almost to a single point and growing back again.
More like a breathing structure than the usual high-density mathart. -
-
Little bit of grid-based generative art 🎨
-
-
-
Generative calligraphy with random walks, smoothing splines and aesthetic mapping in R.
See also: https://mastodon.social/@safest_integer/114329996541737881
```
library(tidyverse)
n = 20
x = cumsum(rnorm(n))
y = runif(n)
xx = predict(smooth.spline(x, spar=.005), seq(1, n, .01))$y
yy = predict(smooth.spline(y, spar=.005), seq(1, n, .01))$y
ggplot(tibble(x=xx,y=yy)) +
geom_path(aes(x=x, y=y, lwd=-c(0,diff(y))), show.legend=FALSE) +
theme_void()
``` -
From code to canvas 🎨
-
Weekend #Rtistry 🎨
-
Some generative art heavily inspired by this weekend's trip to the Designmuseum Denmark ✍️
-
An alternative data art interpretation of the Dungeons & Dragons monsters data from #TidyTuesday!
-
Here's an animation I created using my experimental #rstats package {skiagd}.
From a technical standpoint, this kind of "incremental drawing with blending" isn't currently feasible with R's standard graphics devices. 🧐 So for visual styles involving light accumulation or glow, {skiagd} might be one of the more capable approaches within R.
#rtistry -
Some generative art playing with pastel shades 🎨
-
Simple Vogel spiral animations (2/2)
Code: https://gist.github.com/paithiov909/b1c12083b64ccee1a84964588bc8cfeb#file-vogel-spiral-qmd
#rtistry #creativecoding #mathart -
Simple Vogel spiral animations (1/2)
Code: https://gist.github.com/paithiov909/b1c12083b64ccee1a84964588bc8cfeb#file-vogel-spiral-qmd
#rtistry #creativecoding #mathart -
Magical trail in R (re-uploaded)
#rstats #rtistry #creativecoding -
"Generative Metropolis"
Adapted from https://github.com/paulvanderlaken/generative-art
See also https://marcusvolz.com/#generative-city
Full R code in thread 👇
-
Wrapped up the video I worked on over the weekend 🎥💜
Looks like a swarm of something dancing in violet fluid — what does it look like to you?
Used SkSL shaders for a custom VHS-style effect, plus noise-driven motion and bouncing logic in R. #rstats #rtistry #creativecoding -
```
library(tidyverse)
z = function(n) {
bb = function(i) {
x = y = 0
for (k in 0:(n - 1)) {
x = x + ((floor(i/2^(2 * k))) %% 2) * 2^k
y = y + ((floor(i/2^(2 * k + 1))) %% 2) * 2^k
}
c(x, y)
}
as.data.frame(t(sapply(0:(4^n - 1), bb)))
}
ggplot(z(6)) +
geom_path(aes(x=V1, y=V2, col=sin(V1/4)+cos(V2/4)), show.legend=F) +
scale_colour_gradient(low='orange', high='blue') +
theme_void()
```https://en.wikipedia.org/wiki/Z-order_curve
#rstats #generativeart #tilingtuesday #rtistry #fractal -
Resampling digital pen and ink drawings into a scribble with random colors in white space.
#generativeArt #scribbleArt #doodleArt #rstats #penandink #digitalArt #mastoArt #rtistry
-
Accidental gltich: this is not what I was aiming for.
Coded in #Rstats with #ggplot2 and #gganimate