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

image-upscaling图像放大

Agent Skill

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

总安装

2,305

周安装

98

GitHub Stars

12

下载量

808
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于图像分辨率放大与细节增强。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 支持 2x 至 16x 倍率提升,保留面部细节并降噪。
  • 可用于旧照片修复或大尺寸展示素材制作。
  • 需注意不同倍率对画质和处理时间的差异。
  • image-upscaling 属于图像处理类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Image Upscaling

Upscale and enhance images using each::sense. This skill provides AI-powered image upscaling from 2x to 16x resolution with intelligent enhancement options for faces, noise reduction, and detail preservation.

Features

  • 2x Upscaling: Quick enhancement for web images and social media
  • 4x Upscaling: High-quality output for print materials
  • 8x/16x Upscaling: Large format displays, billboards, posters
  • Face Enhancement: Intelligent facial detail restoration during upscale
  • Noise Reduction: Clean up grainy or compressed images while upscaling
  • Old Photo Restoration: Revive vintage and damaged photographs
  • AI Art Enhancement: Preserve and enhance AI-generated artwork details
  • Product Image Enhancement: E-commerce ready high-resolution product shots

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": "Upscale this image 4x for print quality"}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/my-image.jpg"],
    "mode": "max"
  }'

Upscaling Scale Factors

ScaleOutput Size (from 1024px)Best Use Case
2x2048pxWeb images, social media, thumbnails
4x4096pxPrint materials, high-res displays
8x8192pxLarge format prints, posters
16x16384pxBillboards, exhibition displays

Use Case Examples

1. 2x Upscaling for Web Images

Perfect for improving image quality for websites, social media posts, and digital marketing.

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": "Upscale this web image 2x. Optimize for fast loading while improving sharpness and clarity. The image will be used on a website hero section."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/website-hero.jpg"],
    "mode": "eco"
  }'

2. 4x Upscaling for Print

High-quality upscaling for brochures, flyers, magazines, and other print materials requiring 300 DPI.

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": "Upscale this image 4x for print production. I need 300 DPI quality for a magazine spread. Preserve all fine details and ensure crisp edges."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/magazine-photo.jpg"],
    "mode": "max"
  }'

3. 8x/16x Upscaling for Large Format

Extreme upscaling for billboards, trade show displays, and wall-sized prints.

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": "Upscale this image 8x for a large format banner print. The final output will be displayed on a 10 foot wide trade show backdrop. Maximize detail enhancement and ensure no artifacts."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/tradeshow-banner.jpg"],
    "mode": "max"
  }'

4. Face Enhancement During Upscale

Intelligent facial restoration that enhances eyes, skin texture, and facial features while upscaling portraits.

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": "Upscale this portrait 4x with face enhancement enabled. Restore facial details, enhance eyes, improve skin texture while keeping it natural. This is a headshot photo."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/portrait-headshot.jpg"],
    "mode": "max"
  }'

5. Noise Reduction + Upscale

Clean up grainy, compressed, or low-quality images while increasing resolution.

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": "Upscale this noisy low-light photo 4x. Apply aggressive noise reduction while preserving important details. The image was taken in low light conditions and has visible grain and compression artifacts."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/low-light-photo.jpg"],
    "mode": "max"
  }'

6. Old Photo Upscaling

Restore and upscale vintage photographs, old family photos, and historical images.

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": "Upscale and restore this old family photograph from the 1970s. The image is faded, slightly damaged, and low resolution. Enhance to 4x while restoring colors, fixing damage, and improving clarity. Preserve the vintage aesthetic."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/old-family-photo.jpg"],
    "mode": "max"
  }'

7. AI Art Upscaling

Enhance AI-generated artwork while preserving artistic style and avoiding artifacts.

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": "Upscale this AI-generated artwork 4x for print. Preserve the artistic style and enhance fine details. This is digital art created by an AI image generator - avoid adding unwanted textures or changing the artistic style."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/ai-artwork.png"],
    "mode": "max"
  }'

8. Product Image Upscaling

E-commerce optimized upscaling for product photography with detail enhancement.

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": "Upscale this product photo 4x for e-commerce use. Enhance product details, improve sharpness on edges and textures. The image is of a leather handbag and needs to show material texture clearly for zoom functionality."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/product-handbag.jpg"],
    "mode": "max"
  }'

9. Video Frame Upscaling

Enhance individual video frames or thumbnails extracted from video 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": "Upscale this video frame 4x. This is a still frame extracted from 1080p video footage. Enhance it to 4K quality while reducing compression artifacts and maintaining natural motion blur where present."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/video-frame.jpg"],
    "mode": "max"
  }'

10. Batch Upscaling Workflow

Process multiple images with consistent settings using session persistence.

# First image in batch
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": "Upscale this product image 4x with face enhancement and noise reduction. This is the first of a series of product photos I need processed."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/product-001.jpg"],
    "session_id": "batch-upscale-products",
    "mode": "max"
  }'

# Second image (same session maintains settings)
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": "Upscale this next product image using the same settings as before."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/product-002.jpg"],
    "session_id": "batch-upscale-products"
  }'

# Third image
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": "Continue with the same upscaling settings for this product image."}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/product-003.jpg"],
    "session_id": "batch-upscale-products"
  }'

Best Practices

Choosing Scale Factor

  • 2x: Sufficient for most web and social media use cases
  • 4x: Standard for print quality (300 DPI equivalent)
  • 8x+: Only for large format where viewing distance is greater

Quality Tips

  • Source Quality Matters: Higher quality input produces better upscaled output
  • File Format: Use PNG or high-quality JPEG (90%+) as input when possible
  • Face Enhancement: Enable only for images with human faces
  • Noise Reduction: Use aggressively for low-light or heavily compressed images

Output Considerations

  • File Size: Higher scale factors produce significantly larger files
  • Processing Time: 8x and 16x upscaling takes longer - be patient
  • Viewing Distance: Large format prints are viewed from distance; extreme detail isn't always necessary

Prompt Tips for Image Upscaling

When requesting upscaling, include these details in your prompt:

  1. Scale Factor: Specify 2x, 4x, 8x, or 16x
  2. Use Case: Web, print, large format display
  3. Image Type: Photo, AI art, product shot, portrait
  4. Special Requirements: Face enhancement, noise reduction, artifact removal
  5. Output Intent: Final use case helps optimize processing

Example Prompt Structure

"Upscale this [image type] [scale factor] for [use case].
[Special requirements like face enhancement or noise reduction].
[Additional context about the source image quality or intended output]."

Mode Selection

Ask your users before processing:

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

ModeBest ForSpeedQuality
maxFinal production images, print materials, important projectsSlowerHighest
ecoQuick previews, batch testing, web thumbnailsFasterGood

Multi-Turn Upscaling Workflow

Use session_id to iterate on upscaling results:

# Initial upscale
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": "Upscale this photo 4x for print"}],
    "model": "eachsense/beta",
    "stream": true,
    "image_urls": ["https://example.com/photo.jpg"],
    "session_id": "upscale-project-001"
  }'

# Request adjustments
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 result looks good but can you also apply face enhancement and reduce noise?"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "upscale-project-001"
  }'

# Request different scale
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": "Actually I need 8x for a larger print. Can you upscale it further?"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "upscale-project-001"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Image too largeSource image exceeds maximum dimensionsResize source image before upscaling
TimeoutLarge scale factors take longerSet client timeout to minimum 10 minutes
Unsupported formatInvalid image formatUse JPEG, PNG, or WebP input

Related Skills

  • each-sense - Core API documentation
  • image-generation - Generate images from text prompts
  • image-editing - Edit and modify existing images
  • old-photo-restoration - Specialized restoration for vintage photos

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.36%
按下载量换算310

Claude

28.98%
按下载量换算234

Cursor

18.29%
按下载量换算148

Gemini CLI

9.31%
按下载量换算75

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills