Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer yuzumde sakal olmasin
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer
Create an image of the main characters from "Money Heist" reimagined as ninjas with dali masks. Each character should be wearing traditional ninja attire with a modern twist, incorporating elements from their original outfits, such as the red jumpsuits and masks. The ninja outfits should include black and red colors, with stealthy, tactical designs, and face masks that resemble the Salvador Dalí masks from the show. The background should depict a high-stakes heist setting, such as a futuristic vault or a high-tech bank, with sleek, shadowy environments. Capture the intensity and precision of the characters as they execute their heist, with some characters in dynamic, action-packed poses, wielding ninja weapons like katanas, shurikens, and grappling hooks. The atmosphere should be tense and dramatic, with a sense of stealth and cunning.
Create a cinematic 4K image of a photo-realistic, enigmatic character standing amidst a chaotic urban environment. This character should exude an air of mystery while wearing a Guy Fawkes mask. Capture the scene from a cinematic angle with a visual quality reminiscent of 'The Dark Knight' movie, emphasizing high-resolution, detailed realism
# 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")
create a tall full body head to toe png image model looking perfectly at me the viewer with realistic detail in my black shirt no seam a bit crop, sleeve dop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black wearing this mask but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
"Close-up portrait from a low angle, showing a man from the chest up, with dark hair. He is wearing reflective round sunglasses that obscure his eyes, and a black suite and white shirt. The lighting is harsh and theatrical, coming from above and slightly in front, highlighting the bridge of his nose, the top of his cheekbones, and the curve of his neck. Deep shadows define the lower part of his face and the majority of the background, creating a powerful and mysterious composition 100% use my upload reference image image generate."
create a tall full body image showing head to toe png image model looking perfectly at me the viewer with realistic detail in my black t shirt no seam a bit crop a bit oversize, sleeve drop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black high. wearing a Balaclava christain old paintings mask full face but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer
create a tall full body head to toe png image model looking perfectly at me the viewer with realistic detail in my black shirt no seam a bit crop, sleeve dop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black wearing this mask but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
create a tall full body image showing head to toe png image model looking perfectly at me the viewer with realistic detail in my black t shirt no seam a bit crop a bit oversize, sleeve drop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black high. wearing a Balaclava christain old paintings mask full face but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer yuzumde sakal olmasin
Create an image of the main characters from "Money Heist" reimagined as ninjas with dali masks. Each character should be wearing traditional ninja attire with a modern twist, incorporating elements from their original outfits, such as the red jumpsuits and masks. The ninja outfits should include black and red colors, with stealthy, tactical designs, and face masks that resemble the Salvador Dalí masks from the show. The background should depict a high-stakes heist setting, such as a futuristic vault or a high-tech bank, with sleek, shadowy environments. Capture the intensity and precision of the characters as they execute their heist, with some characters in dynamic, action-packed poses, wielding ninja weapons like katanas, shurikens, and grappling hooks. The atmosphere should be tense and dramatic, with a sense of stealth and cunning.
Create a cinematic 4K image of a photo-realistic, enigmatic character standing amidst a chaotic urban environment. This character should exude an air of mystery while wearing a Guy Fawkes mask. Capture the scene from a cinematic angle with a visual quality reminiscent of 'The Dark Knight' movie, emphasizing high-resolution, detailed realism
# 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")
"Close-up portrait from a low angle, showing a man from the chest up, with dark hair. He is wearing reflective round sunglasses that obscure his eyes, and a black suite and white shirt. The lighting is harsh and theatrical, coming from above and slightly in front, highlighting the bridge of his nose, the top of his cheekbones, and the curve of his neck. Deep shadows define the lower part of his face and the majority of the background, creating a powerful and mysterious composition 100% use my upload reference image image generate."
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer yuzumde sakal olmasin
create a tall full body head to toe png image model looking perfectly at me the viewer with realistic detail in my black shirt no seam a bit crop, sleeve dop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black wearing this mask but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create an image of the main characters from "Money Heist" reimagined as ninjas with dali masks. Each character should be wearing traditional ninja attire with a modern twist, incorporating elements from their original outfits, such as the red jumpsuits and masks. The ninja outfits should include black and red colors, with stealthy, tactical designs, and face masks that resemble the Salvador Dalí masks from the show. The background should depict a high-stakes heist setting, such as a futuristic vault or a high-tech bank, with sleek, shadowy environments. Capture the intensity and precision of the characters as they execute their heist, with some characters in dynamic, action-packed poses, wielding ninja weapons like katanas, shurikens, and grappling hooks. The atmosphere should be tense and dramatic, with a sense of stealth and cunning.
Create a cinematic 4K image of a photo-realistic, enigmatic character standing amidst a chaotic urban environment. This character should exude an air of mystery while wearing a Guy Fawkes mask. Capture the scene from a cinematic angle with a visual quality reminiscent of 'The Dark Knight' movie, emphasizing high-resolution, detailed realism
# 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")
"Close-up portrait from a low angle, showing a man from the chest up, with dark hair. He is wearing reflective round sunglasses that obscure his eyes, and a black suite and white shirt. The lighting is harsh and theatrical, coming from above and slightly in front, highlighting the bridge of his nose, the top of his cheekbones, and the curve of his neck. Deep shadows define the lower part of his face and the majority of the background, creating a powerful and mysterious composition 100% use my upload reference image image generate."
create a tall full body image showing head to toe png image model looking perfectly at me the viewer with realistic detail in my black t shirt no seam a bit crop a bit oversize, sleeve drop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black high. wearing a Balaclava christain old paintings mask full face but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer
# 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")
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer yuzumde sakal olmasin
create a tall full body head to toe png image model looking perfectly at me the viewer with realistic detail in my black shirt no seam a bit crop, sleeve dop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black wearing this mask but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
create a tall full body image showing head to toe png image model looking perfectly at me the viewer with realistic detail in my black t shirt no seam a bit crop a bit oversize, sleeve drop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black high. wearing a Balaclava christain old paintings mask full face but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create an image of the main characters from "Money Heist" reimagined as ninjas with dali masks. Each character should be wearing traditional ninja attire with a modern twist, incorporating elements from their original outfits, such as the red jumpsuits and masks. The ninja outfits should include black and red colors, with stealthy, tactical designs, and face masks that resemble the Salvador Dalí masks from the show. The background should depict a high-stakes heist setting, such as a futuristic vault or a high-tech bank, with sleek, shadowy environments. Capture the intensity and precision of the characters as they execute their heist, with some characters in dynamic, action-packed poses, wielding ninja weapons like katanas, shurikens, and grappling hooks. The atmosphere should be tense and dramatic, with a sense of stealth and cunning.
"Close-up portrait from a low angle, showing a man from the chest up, with dark hair. He is wearing reflective round sunglasses that obscure his eyes, and a black suite and white shirt. The lighting is harsh and theatrical, coming from above and slightly in front, highlighting the bridge of his nose, the top of his cheekbones, and the curve of his neck. Deep shadows define the lower part of his face and the majority of the background, creating a powerful and mysterious composition 100% use my upload reference image image generate."
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create a cinematic 4K image of a photo-realistic, enigmatic character standing amidst a chaotic urban environment. This character should exude an air of mystery while wearing a Guy Fawkes mask. Capture the scene from a cinematic angle with a visual quality reminiscent of 'The Dark Knight' movie, emphasizing high-resolution, detailed realism
Create an image of the main characters from "Money Heist" reimagined as ninjas with dali masks. Each character should be wearing traditional ninja attire with a modern twist, incorporating elements from their original outfits, such as the red jumpsuits and masks. The ninja outfits should include black and red colors, with stealthy, tactical designs, and face masks that resemble the Salvador Dalí masks from the show. The background should depict a high-stakes heist setting, such as a futuristic vault or a high-tech bank, with sleek, shadowy environments. Capture the intensity and precision of the characters as they execute their heist, with some characters in dynamic, action-packed poses, wielding ninja weapons like katanas, shurikens, and grappling hooks. The atmosphere should be tense and dramatic, with a sense of stealth and cunning.
# 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")
create a tall full body image showing head to toe png image model looking perfectly at me the viewer with realistic detail in my black t shirt no seam a bit crop a bit oversize, sleeve drop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black high. wearing a Balaclava christain old paintings mask full face but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create a cinematic 4K image of a photo-realistic, enigmatic character standing amidst a chaotic urban environment. This character should exude an air of mystery while wearing a Guy Fawkes mask. Capture the scene from a cinematic angle with a visual quality reminiscent of 'The Dark Knight' movie, emphasizing high-resolution, detailed realism
"Close-up portrait from a low angle, showing a man from the chest up, with dark hair. He is wearing reflective round sunglasses that obscure his eyes, and a black suite and white shirt. The lighting is harsh and theatrical, coming from above and slightly in front, highlighting the bridge of his nose, the top of his cheekbones, and the curve of his neck. Deep shadows define the lower part of his face and the majority of the background, creating a powerful and mysterious composition 100% use my upload reference image image generate."
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
create a tall full body head to toe png image model looking perfectly at me the viewer with realistic detail in my black shirt no seam a bit crop, sleeve dop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black wearing this mask but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer yuzumde sakal olmasin
create a tall full body image showing head to toe png image model looking perfectly at me the viewer with realistic detail in my black t shirt no seam a bit crop a bit oversize, sleeve drop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black high. wearing a Balaclava christain old paintings mask full face but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of the main characters from "Money Heist" reimagined as ninjas with dali masks. Each character should be wearing traditional ninja attire with a modern twist, incorporating elements from their original outfits, such as the red jumpsuits and masks. The ninja outfits should include black and red colors, with stealthy, tactical designs, and face masks that resemble the Salvador Dalí masks from the show. The background should depict a high-stakes heist setting, such as a futuristic vault or a high-tech bank, with sleek, shadowy environments. Capture the intensity and precision of the characters as they execute their heist, with some characters in dynamic, action-packed poses, wielding ninja weapons like katanas, shurikens, and grappling hooks. The atmosphere should be tense and dramatic, with a sense of stealth and cunning.
create a tall full body head to toe png image model looking perfectly at me the viewer with realistic detail in my black shirt no seam a bit crop, sleeve dop a bit under elbow. Wearing baggy black jeans with a scrattchy effect on the jeans wearing boots black wearing this mask but change it up a bit. CRAZY HUMAN DETAIL MAKE HIM LOOK SO REAL
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create an image of Bruce Lee dressed in the iconic red jumpsuit from "Money Heist." He should also be wearing the Salvador Dalí mask, either fully on or pushed up to reveal his face while keeping the mask visible. The setting should be a high-stakes heist environment, such as a modern bank or vault, with elements of both action and tension. Capture Bruce Lee in a dynamic martial arts pose, showcasing his agility and strength. The background should include details that evoke the atmosphere of a daring heist, with vaults, security systems, and a dramatic, high-energy ambiance. Ensure Bruce Lee's iconic features, such as his intense expression and muscular build, are clearly recognizable.
Create a cinematic 4K image of a photo-realistic, enigmatic character standing amidst a chaotic urban environment. This character should exude an air of mystery while wearing a Guy Fawkes mask. Capture the scene from a cinematic angle with a visual quality reminiscent of 'The Dark Knight' movie, emphasizing high-resolution, detailed realism
# 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")
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer yuzumde sakal olmasin
"Close-up portrait from a low angle, showing a man from the chest up, with dark hair. He is wearing reflective round sunglasses that obscure his eyes, and a black suite and white shirt. The lighting is harsh and theatrical, coming from above and slightly in front, highlighting the bridge of his nose, the top of his cheekbones, and the curve of his neck. Deep shadows define the lower part of his face and the majority of the background, creating a powerful and mysterious composition 100% use my upload reference image image generate."
siyah gorseli yuz benm yuzum 2 ci ornek gorseldeki arkapilan o tarz olsun ve yuz pozuda 2 ci gorseldeki gibi olsun sakali erkeyn yuzunden bahsedyorm cilt dokusu sadece cilt dokusu 2 ci gorseldeki sakali erkeyn cilt dokusu gibi olsun ama yuz benm yuzum olmali tamamen gozum burnum dudagm kasim orjinal siyah gorselideki yuz benm, yuzum koru referansimi sadece 2 ci gorseldeki erkeyn ten dokusu ve yuz hatdi ve pozu benzer olsun ayni deglde benzer