Token导航 LogoToken导航TokenDH.com
图像处理需要联网github未标认证来源可访问许可证需确认审计通过

image-relighting图像重新照明

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

1,862

周安装

80

GitHub Stars

12

下载量

653
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:image-relighting(图像重新照明)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/image-relighting
安装命令:
npx skills add https://github.com/eachlabs/skills --skill image-relighting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill image-relighting

简介

模拟不同光照条件改变图像明暗氛围。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合影视后期、产品摄影与虚拟布景。
  • 基于物理渲染原理模拟光源变化效果。
  • 强光或阴影区域可能出现伪影现象。image-relighting 属于图像处理类 Skill,可作为该场景下的辅助能力补充。
  • 人像照明调整需考虑肤色自然度保持。

SKILL.md

Image Relighting

Transform the lighting in your photos using each::sense. This skill allows you to change lighting conditions, add professional studio setups, create dramatic effects, or match lighting to new backgrounds - all while preserving the original subject.

Features

  • Studio Lighting: Professional three-point lighting, Rembrandt, butterfly, and split lighting setups
  • Natural Light: Golden hour, blue hour, overcast, and window light effects
  • Dramatic Effects: Hard shadows, rim lighting, silhouettes, and chiaroscuro
  • Creative Lighting: Neon glows, colored gels, disco lights, and artistic effects
  • Ring Light: Beauty and portrait ring light effects
  • Cinematic: Film noir, blockbuster movie, and moody cinematic lighting
  • Shadow Control: Remove harsh shadows, soften existing light, fill in dark areas
  • Environment Matching: Match subject lighting to a new background or scene

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add professional studio lighting to this portrait - soft key light from the left with subtle fill"}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/portrait.jpg"],
    "mode": "max"
  }'

Lighting Types Reference

Lighting StyleDescriptionBest For
Studio (3-point)Key, fill, and back light setupProfessional portraits
RembrandtTriangle of light on cheekDramatic portraits
ButterflyLight from above, shadow under noseBeauty, glamour
SplitHalf face lit, half in shadowDramatic, artistic
Ring LightEven, shadowless front lightingBeauty, social media
Golden HourWarm, soft directional lightOutdoor portraits, lifestyle
Blue HourCool, soft ambient lightMoody, atmospheric
Window LightSoft, directional natural lightNatural portraits
Neon/ColoredVibrant colored lightingCreative, editorial
CinematicHigh contrast, dramatic shadowsFilm-like imagery

Use Case Examples

1. Add Studio Lighting

Transform a casual photo into a professionally lit portrait with classic three-point lighting setup.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add professional studio lighting to this portrait. Use a soft key light from 45 degrees left, fill light from the right to reduce shadows, and a subtle hair light from behind. Keep the background dark for a classic studio look."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/portrait.jpg"],
    "mode": "max"
  }'

2. Golden Hour / Sunset Lighting

Add warm, golden sunlight effect as if the photo was taken during the magic hour.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Relight this photo with golden hour lighting. Add warm, soft sunlight coming from the side, creating a beautiful golden glow on the skin. Include subtle lens flare and that magical sunset atmosphere."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/outdoor-photo.jpg"],
    "mode": "max"
  }'

3. Dramatic Side Lighting

Create bold, dramatic portraits with strong directional light and deep shadows.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply dramatic side lighting to this portrait. Strong directional light from the left creating deep shadows on the right side of the face. High contrast, moody atmosphere, like a film noir character portrait."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/headshot.jpg"],
    "mode": "max"
  }'

4. Soft Diffused Lighting

Create flattering, even lighting that minimizes harsh shadows and skin imperfections.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Relight this photo with soft, diffused lighting. Like shooting through a large softbox or on an overcast day. Even, flattering light with minimal shadows, perfect for beauty photography. Keep the skin looking natural and glowing."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/beauty-shot.jpg"],
    "mode": "max"
  }'

5. Neon / Colored Lighting

Add vibrant, creative colored lighting for editorial or artistic effects.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add neon lighting to this portrait. Cyberpunk style with pink/magenta light from the left and blue/cyan light from the right. Create that futuristic nightclub vibe with vibrant colored reflections on the skin and a dark background."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/model-photo.jpg"],
    "mode": "max"
  }'

6. Natural Window Light

Simulate beautiful, soft natural light coming through a window.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Relight this portrait with natural window light. Soft, directional daylight coming from a large window on the left side. Create gentle shadows and that beautiful, airy natural light photographers love. Slightly cool color temperature."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/indoor-portrait.jpg"],
    "mode": "max"
  }'

7. Ring Light Effect

Add the signature ring light look popular in beauty and social media content.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply ring light effect to this selfie. Even, frontal lighting with that signature circular catchlight in the eyes. Minimize shadows under the nose and chin, create that beauty influencer look with glowing, even skin illumination."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/selfie.jpg"],
    "mode": "max"
  }'

8. Cinematic Lighting

Create movie-quality lighting with dramatic contrast and atmosphere.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply cinematic lighting to this portrait. Hollywood movie style with strong key light, deep shadows, and subtle rim light separating the subject from background. Moody and atmospheric like a scene from a thriller. Add subtle haze/atmosphere in the air."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/actor-photo.jpg"],
    "mode": "max"
  }'

9. Remove Harsh Shadows

Fix poorly lit photos by softening or removing unflattering harsh shadows.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Remove the harsh shadows from this photo. The midday sun created unflattering dark shadows under the eyes and nose. Relight it with softer, more even lighting while keeping a natural outdoor look. Fill in the shadow areas without making it look flat."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/harsh-shadow-photo.jpg"],
    "mode": "max"
  }'

10. Match Lighting to Background

Adjust subject lighting to seamlessly match a new environment or composited background.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Relight this person to match the beach sunset background. The subject was photographed indoors with flat lighting, but needs to look like they are actually on the beach during golden hour. Match the warm color temperature, add rim lighting from the setting sun behind them, and ensure the shadows are consistent with the background lighting direction."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": [
      "https://example.com/subject-indoor.jpg",
      "https://example.com/beach-sunset-background.jpg"
    ],
    "mode": "max"
  }'

Multi-Turn Lighting Refinement

Use session_id to iteratively refine lighting across multiple requests:

# Initial relighting
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add dramatic studio lighting to this portrait with strong shadows"}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/portrait.jpg"],
    "session_id": "lighting-session-001"
  }'

# Refine the result
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "The shadows are too harsh. Can you soften them slightly while keeping the dramatic feel? Also add a subtle blue rim light on the shadow side."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "lighting-session-001"
  }'

# Try a variation
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Create another version with warmer color temperature, like tungsten lighting"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "lighting-session-001"
  }'

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal deliverables, client work, portfolio imagesSlowerHighest
ecoQuick previews, testing lighting ideas, batch processingFasterGood

Prompt Tips for Best Results

When requesting relighting, include these details for best results:

  1. Light Direction: Specify where the light is coming from (left, right, above, behind)
  2. Light Quality: Hard/soft, diffused, specular
  3. Color Temperature: Warm (golden), cool (blue), neutral, or specific colors
  4. Shadow Intensity: Deep shadows, subtle shadows, shadowless
  5. Mood/Atmosphere: Dramatic, romantic, professional, edgy
  6. Reference Style: "Like a Vogue editorial" or "Film noir style"

Example Prompt Structure

"Relight this [subject type] with [lighting style].
Light coming from [direction] with [quality] shadows.
[Color temperature] color temperature.
Mood: [atmosphere description].
[Additional requirements]"

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentEnsure image complies with content policies
TimeoutComplex generationSet client timeout to minimum 10 minutes
Poor lighting resultsVague promptBe more specific about light direction, quality, and mood

Related Skills

  • each-sense - Core API documentation
  • product-photo-generation - E-commerce product lighting
  • portrait-enhancement - Portrait retouching and enhancement
  • background-replacement - Change backgrounds with matched lighting

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.64%
按下载量换算220

Claude

31.04%
按下载量换算203

Cursor

17.02%
按下载量换算111

Gemini CLI

9.65%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills