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

separating her from the dark background prompts

very few results

7 months ago

A hyper-realistic, ultra-detailed full-body front-view depiction of a tall, well-proportioned British woman with a neutral expression. She stands at 173 cm with an ample bust (34F), a defined waist, balanced hips, and long, well-structured legs, her flawless skin illuminated by cinematic-style lighting that enhances her natural contours with soft gradients and subtle shadows. Her facial features include an oval face shape, high cheekbones, a soft yet well-defined jawline, full symmetrical lips closed in a neutral expression, hazel almond-shaped eyes, dark brown arched eyebrows, and a proportional nose subtly implied for balance. Her collarbones are delicate and softly defined, avoiding overly prominent or sunken lines. Her dark brown hair is styled in a messy bun with a few loose strands framing her face, creating a warm, smooth, and effortless look. She is wearing a form-fitting gray high-neck turtleneck mini dress that accentuates her curves while maintaining elegance, ending mid-thigh to showcase her long legs, paired with sleek black knee-level boots for a modern touch. The lighting setup uses a soft cinematic style , with a key light positioned slightly off-center to create gentle highlights on one side of her face and body, while a fill light reduces harsh shadows on the opposite side. A subtle rim light is added behind her to separate her silhouette from the background, enhancing depth and dimension. The light has a warm tone with smooth transitions between highlights and shadows, evoking a natural yet dramatic effect. She stands in a true full-body, head-to-toe, wide-framed, front-facing pose with her feet flat on the ground, ensuring her entire physique is fully visible without cropping. The camera is positioned at a neutral height directly in front of her, capturing her entire height in a single frame. The background is plain and neutral, focusing attention on her body proportions, while the cinematic lighting enhances realism by creating depth and texture without extreme contrast. The image is shot in HDR 4K with ultra-detailed textures, extreme photorealism, cinematic quality, true-to-life proportions, and no distortion.

4 months ago

This is a hyper-realistic, high-detail digital portrait of a young Korean woman who is a cyborg. The image masterfully juxtaposes delicate, organic beauty with complex, inorganic machinery, creating a captivating and thought-provoking piece of science fiction art. The overall aesthetic is clean, elegant, and ethereal, with a carefully controlled color palette. The Subject's Face and Human Features: The woman has a face of almost supernatural perfection. Her skin is pale and flawless, like porcelain, with a smooth, matte finish. Her facial structure is delicate, with high cheekbones, a small, straight nose, and a well-defined jawline on her visible human side. Eyes: Her eyes are the most striking feature. They are a luminous, piercing emerald green, rendered with incredible detail. The irises have intricate patterns of light and dark green, and a dark limbal ring that makes them stand out dramatically against her pale skin. They are framed by long, dark, perfectly separated eyelashes and subtle, expertly applied eyeliner that creates a slight cat-eye effect. Her gaze is direct and engages the viewer with a neutral, almost serene expression. Eyebrows: Her eyebrows are perfectly shaped with a gentle arch, filled in with a soft brown that complements her features without being harsh. Lips: She has full, soft-looking lips with a defined Cupid's bow. They are colored in a natural, dusky pink shade with a subtle satin sheen, echoing the color of her hair. Cybernetic Enhancements: The woman's human features are seamlessly integrated with extensive cybernetic enhancements, primarily on the right side of her face and neck. Facial and Head Mechanics: A complex mechanical structure replaces parts of her head and face. It begins at her right temple and extends down her cheek and jaw. This section is composed of articulated, segmented plates in a matte, off-white and light gray finish, with some plates having a subtle rose-gold or pinkish tint that harmonizes with her hair. Behind her head and over her ear is a larger, more robust piece of machinery with circular vents, joints, and what appear to be pistons or hydraulic connectors. Neck and Torso: Her neck is entirely mechanical, consisting of a dense, intricate web of gray and black wires, cables, and tubes that flow downwards, suggesting a fully robotic torso beneath. This creates a stark contrast between the soft skin of her face and the complex, functional machinery supporting it. Integration: The transition from skin to machine is depicted flawlessly. The mechanical parts fit snugly against her skin, and strands of her hair weave in and out of the cybernetics, suggesting a long-term, permanent fusion of the organic and the artificial. Hair: Her hair is long, voluminous, and cascades in soft waves around her face and shoulders. The color is a beautiful pastel pink, reminiscent of cotton candy or cherry blossoms, with subtle variations in tone, including lighter, almost-white highlights that catch the light. The texture appears silky and fine, and it beautifully softens the hard edges of the mechanical components it intertwines with. Lighting, Composition, and Color Palette: The portrait is a tight close-up, focusing entirely on her head and shoulders. The lighting is soft and diffused, coming from the front and slightly to the left, which evenly illuminates her features and highlights the three-dimensional details of the cybernetics without creating harsh shadows. The background is a blurry, out-of-focus cool gray, which ensures that the subject is the sole focus. The color palette is a sophisticated blend of soft, muted tones. It is dominated by the pastel pink of her hair, the porcelain white of her skin, and the cool grays and off-whites of the machinery. The vivid emerald green of her eyes serves as a powerful, singular accent color, drawing the viewer's attention and giving the character a sense of life and soul amidst the mechanics.

29 days 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")

12 days ago

abstract, OBtaozhuang Street fashion close up on face photo of a 24-year-old Sotho-Tuareg female serene, ethereal beauty with a warm and inviting expression. She has Dark brown skin with a natural radiance, even in texture and tone. The skin pores and texture are clearly visible and in focus. Her Teardrop with sharp edges, Sparkling, diamond eyes, framed by long, elegant eyelashes. Her haircut is Retro-inspired short cut with finger waves and faded undercut, haircolor is pale yellow with hints of brown, resembling the color of withered crops. Her eyebrows are Straight and sharp shaped, complementing her delicate facial features. Her body is Visible muscle separation in the upper back, small breast, toned abs, Female Bodybuilding style. Her upper body clothing is Frayed heavily cropped camisoles with exposed seams and faded patterns Her midriff is clearly visible, Her lower body clothing is Fading fishnet stockings with holes and stretched-out waistband She is positioned on the left side in the frame by the rule of thirds. Standing atop a ruined monument, a beacon of hope for all who see her. In the background A vast metropolis lies in ruins, skyscrapers crumbling into piles of rubble, with twisted metal structures jutting out of the ground like skeletal remains. The scene is lighted using Sunlight filters through a thick layer of smog, casting an eerie orange hue over the landscape, with shadows distorted and elongated. the model is lighted with soft natural lighting. in the style of Luna Darkwood