stable diffusion Images and Art
Browse through thousands of the most popular stable diffusion images made by AI, or make your own stable diffusion images using the top AI models. OpenArt is the best place to find and create your own stable diffusion art and images using AI.
is live on OpenArt Suite.



![Prompt: import matplotlib.pyplot as plt
import numpy as np
# Función del conjunto de Mandelbrot
def mandelbrot(c, max_iter):
z = 0
for n in range(max_iter):
if abs(z) > 2:
return n
z = z*z + c
return max_iter
# Parámetros de la imagen
width, height = 800, 800
x_min, x_max = -2.0, 1.0
y_min, y_max = -1.5, 1.5
max_iter = 100
# Crear imagen
image = np.zeros((height, width))
for x in range(width):
for y in range(height):
real = x_min + (x / width) * (x_max - x_min)
imag = y_min + (y / height) * (y_max - y_min)
c = complex(real, imag)
color = mandelbrot(c, max_iter)
image[y, x] = color
# Mostrar imagen con estilo "hecho a mano"
plt.figure(figsize=(10, 10))
plt.imshow(image, cmap="inferno", extent=(x_min, x_max, y_min, y_max))
plt.axis("off")
plt.title("Fractal estilo Mandelbrot", fontsize=14)
plt.show()](https://cdn.openart.ai/published/Mm8xiOmoijBIMCWzmwuz/NBHSpx8K_oYt7_512.webp)


























