Questions tagged [generative-art]

Artwork created with the use of an autonomous system. An autonomous system independently determines features of an artwork that would otherwise require decisions made directly by the artist.

Generative art refers to art that in whole or in part has been created with the use of an autonomous system. An autonomous system in this context is generally one that is non-human and can independently determine features of an artwork that would otherwise require decisions made directly by the artist. In some cases the human creator may claim that the generative system represents their own artistic idea, and in others that the system takes on the role of the creator. There are various types of generative art - music, visual art, software art, architecture, literature, etc.

59 questions
1
vote
1 answer

R generativeart package image resolution

I'm experimenting with the generativeart package for R. Information on the package can be found here. I'm looking to generate some images to use as a background image for a design exercise. However, I'm struggling to get the images exported into a…
glnvdl
  • 397
  • 2
  • 12
1
vote
1 answer

P5.JS: Saving generative art (using noise()) as images on device and reuploading them on HTML

I'm working on generative art using p5.js and the noise() function. I have followed Daniel Shiffman's tutorials, but his final product always ends up being in constant generation, like an everlasting animation. On my end, I'd like to save these…
1
vote
2 answers

Generative art javascript library without node-canvas?

I am looking for a javascript library that can be run in different servers, but not node.js (for a WordPress site), capable of doing this: https://color-wander.surge.sh/ or something similar.
Kevin Mamaqi
  • 355
  • 4
  • 17
1
vote
1 answer

How to generate an image using parts of another image?

Before clarifying my question, please just consider these two generative portraits by Sergio Albiac: Since I really like this kind of portraits I wanted to find a way of producing them myself. I don't have much for now, the only things I can…
1
vote
4 answers

Is OpenGL the right choice for highest quality renders, without time constraints?

Background: I'm writing a program that creates generative art. I care about creating one final static image, and I don't need to render a bunch of frames per second. So far it's been 2D, and I'm on a Mac so I've been using the Core Graphics (aka…
Rob N
  • 15,024
  • 17
  • 92
  • 165
1
vote
1 answer

How to create "generative art" on an existing word/pdf document?

I am new to processing and using processing.js to create some 'generative art'. I want to know if there are any references, tools, codes, scripts (processing.js based) which allow us to create these patterns on the top/background of an existing…
0
votes
0 answers

ERROR: Could not find a version that satisfies the requirement torch==2.0.1 (from versions: none) when trying to install Stable Diffusion A1111

I am trying to install Stable Diffusion using A1111. I am following https://github.com/AUTOMATIC1111/stable-diffusion-webui/discussions/5461 for instructions. I am on MacBook Pro M1 After 5th step it gives the error Installing torch and…
0
votes
1 answer

How can I add a progress-bar so I can make sure my programme is running

When I run the program I can see that my pc uses more CPU etc, seeing something is running on the background. I still cannot make sure as the "train" function needs to run for couple of hours before any results to display, I would like to add a line…
0
votes
0 answers

"train" is not defined Pylance(reportUndefinedVariable) [Ln 124, Col 13]

I have defined my "train" via def function, although lines PREVIOUS my def seems to not have any issues. However line that mentions "train" last gives an error of undefined variable. Here is my code, this is not the full code and I am working in VS…
0
votes
1 answer

How to create a mask layer from a user uploaded image in P5js

I'm trying to create a generative canvas in p5js which has about 4 grid layout options controlled by a slider. The main canvas is square in ratio and made of squares, rectangles and circles. An image can be upload to the canvas. Upon upload how can…
shasofia
  • 1
  • 2
0
votes
0 answers

How can I create this ASCII art but with a different theme?

I have these ASCII owl's as a vector and would like to create my own versions, but with a different theme than the owl's, a cat as example. Also I need like 2000 different variations of this theme, different colors and chars. So I hope someone can…
Carr
  • 1
0
votes
0 answers

Pyo: best way to trigger samples at specific BPM?

I am trying to use Pyo (python module for sound synthesis) to create a track however I am having a hard time understanding how samples are triggered. If, for example, I wish to play a specific sample at 120 bpm, in sync with other synthesizers is…
0
votes
2 answers

Hello, I have this code and I don't know how to restart the sketch using R key

if(toggle == 1){ fill(150,10); rect(width+435,400,200,height); fill(0); textSize(20); text(" R = Restart",1120,500); } } } void keyPressed() { if(key=='R' || key == 'r') { } } I have done everything…
0
votes
0 answers

How to fix ; TypeError: You are passing KerasTensor, to a TF API that does not allow registering custom dispatchers

I'm trying to train a variational autoencoder to generate faces of celebrities. When I create the model and compile it, everything works fine but when I try to fit the model I get an error. I suspect the error comes from the custom loss function,…
0
votes
1 answer

How non-integer coordinates work in Processing when drawing shapes?

I'm trying to draw a series of lines and shapes that connect to each-other. Because of some calculations that I'm doing the coordinates for the lines/shapes end up being non-integer numbers and in this case there's a gap between lines that end and…
Nick Dima
  • 1,587
  • 2
  • 18
  • 36