A sample prompt of what you can find in this page
Prompt by artai

none prompts

very few results

3 months ago

A highly muscular Muppet-style puppet with orange felt skin and a surprised expression stands front-facing with fists raised. It has shaggy 1980s black hair under a red sweatband, wearing black boxing shorts, red boxing gloves, and a championship belt. The background is a vintage 1980s-style boxing poster with patriotic red, white, and blue colors, stars, and a faded “ROCKY” text overlay behind an illustration of Rocky Balboa. Shot on a Canon EOS R5 with a 50mm lens at f/2.8, using softbox frontal lighting and even ambient backdrop lighting. The aesthetic combines retro sports drama with parody and Muppet-style satire, dated like a 1988 film poster. ⸻ 🎨 Styling Breakdown 🔸 Subject • Type: Puppet (Muppet-style) • Material: Felt • Color: Orange • Hair: Black, 80s shag cut, red headband • Facial Expression: Wide-eyed, neutral-surprised • Body: Over-exaggerated muscular build 🔸 Outfit • Top: None • Bottom: Black boxing shorts • Accessories: Red boxing gloves, gold championship belt 🔸 Pose • Fists up in front-facing stance, mid-flex 🔸 Background • Vintage boxing poster • 1980s Americana palette (red, white, blue) • “ROCKY” headline text and painted figure in background • Aged film texture, posterized 🔸 Camera Setup • Camera: Canon EOS R5 • Lens: 50mm • Aperture: f/2.8 • Shutter Speed: 1/125 • ISO: 100 • Sensor: Full frame 🔸 Lighting • Key: Frontal softbox at eye level • Fill: Low bounce • Backdrop: Even ambient fill for clarity 🔸 Aesthetic Tags • Retro boxing • 1980s sports drama • Puppet parody • Comedy, Satirical crossover • Time-stamped with “1988” for authenticity

5 months ago

Create a photorealistic 3D render of a floating black "A" letter geometric sculpture. The sculpture is made from a heavy, matte, porous material, resembling rough volcanic rock or textured cast iron, with clearly visible natural irregularities, pits, and a sandpaper-like surface quality. The material has no gloss—fully matte—but catches soft light at high angles, enhancing bumpiness. The object is an asymmetrical, visually confusing interlocked structure composed of thick angular slabs and sharp planes intersecting in impossible Escher-like ways. Key geometric features include: There’s a subtle engraving of the number “1” on the upper right side, flush with the surface, not colored or contrasted—just a soft indent visible under light. The background is a clean, flat light cream-beige gradient, completely smooth, noise-free. The sculpture is floating in mid-air, without a stand or platform. A soft, diffuse shadow below it on the ground plane reinforces the illusion of levitation. The lighting setup is studio-style, soft and non-directional, coming from above and slightly front-left. It’s evenly illuminating the form, revealing surface imperfections without harsh shadows. Lighting should feel realistic and neutral—no dramatic rim lights, no bloom or glare. The camera angle is slightly above and rotated about 20–30 degrees to the left, creating a dynamic diagonal composition. Depth of field should be very shallow or none at all—entire object in sharp focus. Avoid clean CAD-like shading or polygonal smoothness—preserve roughness, uneven light dispersion, and edge imperfections. The final aesthetic should feel like a real-world, modernist stone sculpture photographed in a minimal studio.

2 months ago

{ "meta": { "name": "Chic Southern European Portrait", "description": "A natural light photograph with a warm, vintage-inspired color palette. The style evokes a relaxed, chic European summer aesthetic, characterized by soft textures, balanced contrast, and a film-like grain." }, "mood": { "realismLevel": "photorealistic", "emotionalTone": "relaxed, chic, summery, nostalgic" }, "color": { "hue": "warm earth tones with muted floral accents", "palette": [ "#9F4A39", "#E3D8CB", "#2B252E" ], "contrast": "balanced—bright light and muted shadows", "brightness": "medium ambient lighting", "saturation": "desaturated muted tones" }, "camera": { "zoom": "medium—balanced between subject and background", "angle": "straight-on neutral", "perspective": "eye-level perspective", "depthOfField": "shallow—sharp subject with blurred background" }, "texture": { "grain": "light, film-like texture", "brushStyle": "photographic rendering", "detailLevel": "high with soft finishing touches", "lineQuality": "soft natural edges", "surfaceStyle": "photorealistic smooth" }, "lighting": { "direction": "natural sidelight from the left", "intensity": "medium, diffused daylight", "volumetric": false, "shadowStyle": "soft edged but defined", "temperature": 5500, "highlightStyle": "soft diffused highlights" }, "rendering": { "format": "JPEG", "medium": "digital photography with film emulation", "animated": false, "outputSize": "portrait" }, "atmosphere": { "fog": "none", "grain": "gentle vintage grain overlay", "vignette": "subtle natural vignette", "ambientMotion": "static calm scene" }, "composition": { "depth": 3, "focus": "subject in environmental context", "framing": "natural framing using doorway", "motionFlow": "static peaceful composition", "perspective": "deep three-dimensional", "negativeSpaceRatio": 0.2 } }

1 month ago

# Keeps 589 bright, boosts jewelry shine, replaces background, and maps to Casinofi duotone. import cv2, numpy as np from google.colab import files from PIL import Image # Upload your image when prompted up = files.upload() fn = list(up.keys())[0] img_bgr = cv2.imdecode(np.frombuffer(up[fn], np.uint8), cv2.IMREAD_COLOR) # --- Palette (BGR) --- HEX = lambda h: (int(h[5:7],16), int(h[3:5],16), int(h[1:3],16)) SHADOW = np.array(HEX("#0F1011"), np.float32) MID = np.array(HEX("#8E7A55"), np.float32) HILITE = np.array(HEX("#E6D2A1"), np.float32) HILITE_PLUS = np.array(HEX("#EBDDB7"), np.float32) # extra-bright cream for 589 # --- Helper: gradient map (shadow -> mid -> highlight) --- def gradient_map(gray01): g = gray01[...,None] t1 = np.clip(g/0.5, 0, 1) t2 = np.clip((g-0.5)/0.5, 0, 1) low = SHADOW*(1-t1) + MID*t1 high = MID*(1-t2) + HILITE*t2 return np.where(g<=0.5, low, high) hsv = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2HSV) # --- Masks --- # Background (yellow) range bg_mask = cv2.inRange(hsv, (15, 120, 120), (40, 255, 255)) # tune if needed # Shirt (blue) range – helpful for separate contrast if you want shirt_mask = cv2.inRange(hsv, (95, 80, 40), (130, 255, 255)) # Numbers “589” (white-ish areas on shirt) gray = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2GRAY) num_mask = cv2.threshold(gray, 210, 255, cv2.THRESH_BINARY)[1] # bright white # Jewelry (gold/yellow highlights) jew_mask = cv2.inRange(hsv, (12, 60, 120), (30, 255, 255)) # gold tones # Clean masks a bit def clean(m, k=3): kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (k,k)) m = cv2.morphologyEx(m, cv2.MORPH_OPEN, kernel, iterations=1) m = cv2.morphologyEx(m, cv2.MORPH_CLOSE, kernel, iterations=1) return m bg_mask = clean(bg_mask, 5) shirt_mask= clean(shirt_mask, 5) num_mask = clean(num_mask, 3) jew_mask = clean(jew_mask, 3) # --- Step 1: Replace background with deep charcoal --- out = img_bgr.copy() out[bg_mask>0] = SHADOW # --- Step 2: Convert subject to Casinofi duotone --- # Work on non-background regions subj = out.copy() subj_mask = (bg_mask==0).astype(np.uint8)*255 subj_gray = cv2.cvtColor(subj, cv2.COLOR_BGR2GRAY).astype(np.float32)/255.0 mapped = gradient_map(subj_gray).astype(np.uint8) mapped = cv2.bitwise_and(mapped, mapped, mask=subj_mask) bg_area = cv2.bitwise_and(out, out, mask=bg_mask) out = cv2.add(mapped, bg_area) # --- Step 3: Boost numbers “589” to brighter cream and keep edges crisp --- num_rgb = np.zeros_like(out, dtype=np.uint8) num_rgb[:] = HILITE_PLUS num_layer = cv2.bitwise_and(num_rgb, num_rgb, mask=num_mask) out = cv2.bitwise_and(out, out, mask=cv2.bitwise_not(num_mask)) out = cv2.add(out, num_layer) # Optional: thin dark stroke around numbers edges = cv2.Canny(num_mask, 50, 150) stroke = cv2.dilate(edges, np.ones((2,2), np.uint8), iterations=1) out[stroke>0] = (out[stroke>0]*0 + SHADOW*0.9).astype(np.uint8) # --- Step 4: Jewelry shine (Screen-like brighten in cream) --- # Create a cream layer and blend additively where jewelry mask is j_layer = np.zeros_like(out, dtype=np.float32) j_layer[:] = HILITE j_mask_f = (jew_mask.astype(np.float32)/255.0)[...,None] out_f = out.astype(np.float32) out = np.clip(out_f + j_layer*0.35*j_mask_f, 0, 255).astype(np.uint8) # --- Step 5: Gentle contrast pop on subject only --- subj_mask3 = cv2.merge([subj_mask, subj_mask, subj_mask]) subj_pix = np.where(subj_mask3>0) sub = out.astype(np.float32) sub[subj_pix] = np.clip((sub[subj_pix]-20)*1.08 + 20, 0, 255) out = sub.astype(np.uint8) # Save cv2.imwrite("output_casinofi.png", out) files.download("output_casinofi.png") print("Done. Download output_casinofi.png")

3 months ago

{ "subject": { "gender": "female", "age": "young adult", "ethnicity": "Caucasian", "skin": { "tone": "porcelain fair", "texture": "smooth, even", "details": "highly retouched, no visible pores or peach fuzz" }, "eyes": { "color": "light blue", "makeup": "false lashes, defined liner, soft shimmer eyeshadow" }, "lips": { "shape": "defined cupid’s bow", "color": "soft peach-pink", "finish": "glossy" }, "hair": { "color": "dark brown", "style": "tight center-parted low bun, sleek and polished" }, "accessories": { "earrings": { "type": "statement chandelier", "material": "gold with multicolor gemstones", "length": "long, shoulder-grazing" }, "necklace": { "type": "collar statement", "material": "gold base with pastel crystal clusters", "style": "glamorous, maximalist" } }, "pose": { "angle": "front-facing, symmetrical", "expression": "neutral elegance", "gaze": "straight into camera" } }, "camera": { "brand": "Canon", "model": "EOS 5D Mark IV", "lens": "70-200mm f/2.8", "settings": { "aperture": "f/8", "shutter_speed": "1/160s", "iso": "100" }, "depth_of_field": "deep (everything from jewelry to eyes is sharp)" }, "lighting": { "type": "studio", "setup": "beauty dish directly centered above camera axis", "modifiers": "grid on beauty dish for controlled falloff", "tone": "neutral white", "background_lighting": "none, dark seamless backdrop" }, "background": { "type": "studio black", "color": "pure black", "texture": "matte", "lighting": "none" }, "style": { "aesthetic": "high-glamour editorial", "color_grading": "clean, crisp, jewel-toned highlights", "retouching": "high-end fashion standard, poreless skin, smooth gradients", "influence": "luxury jewelry campaign, beauty commercial" }, "mood": "luxurious, pristine, refined" }