image

command module
v0.0.0-...-134196a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 29, 2019 License: MIT Imports: 1 Imported by: 0

README

image

This is used for rapid development of digital image processing in Go.

Quick Start

Download and install
go get github.com/ljq0002/image
Create file hello.go
package main

import "github.com/ljq0002/image/imageProcess"

func main(){
	image, err := imageProcess.CreateImageFromFile("resource/lena.jpeg")
	if err != nil {
		panic(err)
	}
	image.GaussianBlur(5, 1.5).SaveToJpegFile("blur.jpeg")    
}
Build and run
go build hello.go
./hello

Features

  • Blur
    • Gaussian
    • Median
    • Mean
  • Convert Color
    • to gray
    • to binary
  • Resize
    • sub image
    • resize image

License

ljq0002/image source code is licensed under the MIT License.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL