GithubHelp home page GithubHelp logo

imageai's Introduction

Install

Use the edge version

npm install --save github:mrfzvx12/imageai

Before use this package, you must install Jimp or Sharp to the dependencies

Usage

// import * as ImageAI from "imageai";
const ImageAI = require("imageai");

// default with options
const converter = new ImageAI();

// with proxy options
const converter = new ImageAI({
  proxy: {
    url: "http://101.32.184.53:3128",
    chinese: true,
    image: false,
  },
});

// with async retry options
const converter = new ImageAI({
  ...options,
  retries: 100,
  factor: 3,
  randomize: false,
});

// Can be valid: Buffer, url, path, or base64
const image = imgBuf | imgUrl | imgPath | imgBase64;

Generate AI 2D

Generate photo to animes style

// default
const buffer = await converter.ai2d(image);

// crop the image, "COMPARED" | "SINGLE"
const buffer = await converter.ai2d(image, "SINGLE");

Convert Waifu 2x

Before use this function, you must install Form Data to the dependencies

Make an anime image become HD

// default
const buffer = await converter.waifu2x(image);

// noice reduction, "MEDIUM" | "HIGH"
const buffer = await converter.waifu2x(image, "HIGH");

// scale the image?
const buffer = await converter.waifu2x(image, "MEDIUM", true);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.