Giter Club home page Giter Club logo

faceapp's Introduction

faceapp

small package for faceapp

import (
	"os"
	"github.com/henkman/faceapp"
)

func main() {
	var s faceapp.Session
	if err := s.Init(); err != nil {
		panic(err)
	}
	var code string
	{
		fd, err := os.Open("test/bill.jpg")
		if err != nil {
			panic(err)
		}
		temp, err := s.UploadImage(fd)
		fd.Close()
		if err != nil {
			panic(err)
		}
		code = temp
	}
	{
		for _, fil := range []Filter{
			FilterSmile,
			FilterSmile2,
			FilterHot,
			FilterOld,
			FilterYoung,
			FilterFemale,
			FilterMale,
			FilterBlack,
			FilterCaucasian,
			FilterAsian,
			FilterIndian,
		} {
			fd, err := os.OpenFile("test/bill_"+string(fil)+".jpg",
				os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0750)
			if err != nil {
				panic(err)
			}
			if err := s.GetImage(fd, code, fil, false); err != nil {
				fd.Close()
				panic(err)
			}
			fd.Close()
		}
	}
}

original: alt original

smile: alt smile

smile_2: alt smile_2

hot: alt hot

old: alt old

female: alt female

male: alt male

black: alt black

caucasian: alt caucasian

asian: alt asian

indian: alt indian

faceapp's People

Contributors

henkman avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

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.