Claude
Skills
Sign in
Back

image-upscaling

Included with Lifetime
$97 forever

Upscale images using each::sense AI. Enhance resolution for web, print, large format displays, with options for face enhancement, noise reduction, and AI art optimization.

Image & Video

What this skill does


# 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

```bash
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

| Scale | Output Size (from 1024px) | Best Use Case |
|-------|---------------------------|---------------|
| 2x | 2048px | Web images, social media, thumbnails |
| 4x | 4096px | Print materials, high-res displays |
| 8x | 8192px | Large format prints, posters |
| 16x | 16384px | Billboards, exhibition displays |

## Use Case Examples

### 1. 2x Upscaling for Web Images

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

```bash
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.

```bash
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.

```bash
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.

```bash
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.

```bash
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.

```bash
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.

```bash
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.

```bash
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.

```bash
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"
  }'
```

##
Files: 2
Size: 24.1 KB
Complexity: 42/100
Category: Image & Video

Related in Image & Video