POST/v1/esrgan
1const axios = require('axios');
2
3const fs = require('fs');
4const path = require('path');
5
6async function toB64(imgPath) {
7    const data = fs.readFileSync(path.resolve(imgPath));
8    return Buffer.from(data).toString('base64');
9}
10
11const api_key = "YOUR API-KEY";
12const url = "https://api.segmind.com/v1/esrgan";
13
14const data = {
15  "image": "toB64('/butterfly.png')",
16  "scale": 2
17};
18
19(async function() {
20    try {
21        const response = await axios.post(url, data, { headers: { 'x-api-key': api_key } });
22        console.log(response.data);
23    } catch (error) {
24        console.error('Error:', error.response.data);
25    }
26})();
RESPONSE
image/jpeg
HTTP Response Codes
200 - OKImage Generated
401 - UnauthorizedUser authentication failed
404 - Not FoundThe requested URL does not exist
405 - Method Not AllowedThe requested HTTP method is not allowed
406 - Not AcceptableNot enough credits
500 - Server ErrorServer had some issue with processing
Expand

Attributes


imageimage * Affects Pricing

Input Image.


scaleint ( default: 2 ) Affects Pricing

Scale of the output image

min : 2,

min : 8

To keep track of your credit usage, you can inspect the response headers of each API call. The x-remaining-credits property will indicate the number of remaining credits in your account. Ensure you monitor this value to avoid any disruptions in your API usage.

ESRGAN: Enhanced Super-Resolution Generative Adversarial Networks

ESRGAN, or Enhanced Super-Resolution Generative Adversarial Networks, is a cutting-edge model designed to reconstruct high-resolution (HR) images or sequences from lower-resolution (LR) observations. This technology is particularly useful in upscaling images, for example, transforming a 720p image into a 1080p one. ESRGAN employs deep convolutional neural networks to recover HR images from LR ones, with the generator network learning to create realistic images and the discriminator network learning to differentiate between real and generated images. Through a process of competition and feedback, the generator network improves its ability to create high-quality images.

The technical architecture of ESRGAN is based on SRResNet, with residual-in-residual blocks. It uses a mixture of context, perceptual, and adversarial losses. Context and perceptual losses are used for proper image upscaling, while the adversarial loss pushes the neural network towards the natural image manifold. This is achieved using a discriminator network that is trained to differentiate between the super-resolved images and original photo-realistic images.

One of the key advantages of ESRGAN is its ability to generate high-quality, realistic images from lower resolution inputs. This is achieved through the use of a generative adversarial network, which continually improves the quality of the generated images through a process of competition and feedback. This makes ESRGAN an excellent tool for a variety of applications where image quality is paramount.

ESRGAN use cases

  1. Security Camera Image Enhancement: ESRGAN can be used to enhance low-quality images from security cameras, providing clearer images for identification or analysis.

  2. Medical Imaging: The model can improve the resolution of medical images, aiding in more accurate diagnoses and treatments.

  3. Model Output Upscaling: ESRGAN can upscale the outputs of stable diffusion or other models to a higher resolution and fidelity.

  4. Printing: The model can be used to create high-resolution images or documents before printing, ensuring the highest possible print quality.

  5. Digital Restoration: ESRGAN can be used in the digital restoration of old or damaged photos, enhancing the image quality and bringing new life to old memories.

ESRGAN license

The ESRGAN model is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License. This license allows for the free use, modification, and distribution of the software for non-commercial purposes only, provided that the original copyright notice and disclaimer are included in all copies or substantial portions of the software. However, it does not permit the sharing of adapted material.

The license also does not permit the use of the name of the license holder or the names of its contributors to endorse or promote products derived from this software without specific prior written permission. Furthermore, the license is irrevocable, meaning once granted, it cannot be taken back.