Caire 是一个在 Go 中开发的内容感知图像大小调整库,能够在不失真的情况下调整图像大小。
Go to file
2021-11-05 18:14:57 +02:00
.github ci: intial workflow setup 2021-06-07 06:29:22 +03:00
cmd/caire fix: resolving carving issue on image enlargment (#65) 2021-06-16 16:19:18 +03:00
data Change gocv face detection with pigo 2018-06-12 12:59:44 +03:00
utils cli: improved visual appearance and error handling 2021-06-14 09:32:20 +03:00
vendor fix: resolving carving issue on image enlargment (#65) 2021-06-16 16:19:18 +03:00
.gitignore Modify .gitignore. Exclude packages folder 2018-02-04 14:55:51 +02:00
build.sh build: update version 2021-07-06 17:11:53 +03:00
carver_test.go test: added new test cases 2021-11-05 15:53:23 +02:00
carver.go fix: small typo correction 2021-07-02 17:17:12 +03:00
doc.go Modify doc.go 2018-03-05 12:48:56 +02:00
go.mod dep: updated go.mod 2021-06-14 09:42:27 +03:00
go.sum dep: updated go.mod 2021-06-14 09:42:27 +03:00
grayscale_test.go test: added new test cases 2021-11-05 15:53:23 +02:00
grayscale.go utils: hide the cursor on progress indicator 2021-05-31 15:28:15 +03:00
LICENSE Create LICENSE 2018-01-29 09:55:30 +02:00
Makefile Include vendor dependencies & make file 2018-02-04 15:23:44 +02:00
process_test.go test: added new test cases 2021-11-05 15:53:23 +02:00
process.go test: added new test cases 2021-11-05 15:53:23 +02:00
README.md doc: removed unused cc flag 2021-10-27 16:39:05 +03:00
snapcraft.yaml snap: upgraded to v1.3.3 2021-10-11 12:37:13 +03:00
sobel.go perf: speed improvement when using the face detection flag (#62) 2021-05-28 15:46:12 +03:00
stackblur.go fix: verify blur radius to not be less then 1 2021-11-05 18:14:57 +02:00

Caire Logo

build GoDoc license release homebrew caire

Caire is a content aware image resize library based on Seam Carving for Content-Aware Image Resizing paper.

How does it work

  • An energy map (edge detection) is generated from the provided image.
  • The algorithm tries to find the least important parts of the image taking into account the lowest energy values.
  • Using a dynamic programming approach the algorithm will generate individual seams across the image from top to down, or from left to right (depending on the horizontal or vertical resizing) and will allocate for each seam a custom value, the least important pixels having the lowest energy cost and the most important ones having the highest cost.
  • We traverse the image from the second row to the last row and compute the cumulative minimum energy for all possible connected seams for each entry.
  • The minimum energy level is calculated by summing up the current pixel value with the lowest value of the neighboring pixels obtained from the previous row.
  • We traverse the image from top to bottom and compute the minimum energy level. For each pixel in a row we compute the energy of the current pixel plus the energy of one of the three possible pixels above it.
  • Find the lowest cost seam from the energy matrix starting from the last row and remove it.
  • Repeat the process.

The process illustrated:

Original image Energy map Seams applied
original sobel debug

Features

Key features which differentiates this library from the other existing open source solutions:

  • Customizable command line support
  • Support for both shrinking or enlarging the image
  • Resize image both vertically and horizontally
  • Can process whole directories recursively and concurrently
  • Does not require any third party library
  • Use of sobel threshold for fine tuning
  • Use of blur filter for increased edge detection
  • Square the image with a single command
  • Support for proportional scaling
  • Face detection to avoid face deformation
  • Support for multiple output image type (jpg, jpeg, png, bmp, gif)

Face detection

The library is capable of detecting human faces prior resizing the images by using the Pigo (https://github.com/esimov/pigo) face detection library, which does not require to have OpenCV installed.

The image below illustrates the application capabilities for human face detection prior resizing. It's clearly visible from the image that with face detection activated the algorithm will avoid cropping pixels inside the detected faces, retaining the face zone unaltered.

Original image With face detection Without face detection
Original With Face Detection Without Face Detection

Sample image source

Install

First, install Go, set your GOPATH, and make sure $GOPATH/bin is on your PATH.

$ export GOPATH="$HOME/go"
$ export PATH="$PATH:$GOPATH/bin"

Next download the project and build the binary file.

$ go get -u -f github.com/esimov/caire/cmd/caire
$ go install

MacOS (Brew) install

The library can also be installed via Homebrew.

$ brew install caire

Usage

$ caire -in input.jpg -out output.jpg

Supported commands:

$ caire --help

The following flags are supported:

Flag Default Description
in - Input file
out - Output file
width n/a New width
height n/a New height
perc false Reduce image by percentage
square false Reduce image to square dimensions
blur 1 Blur radius
sobel 10 Sobel filter threshold
debug false Use debugger
face false Use face detection
angle float Plane rotated faces angle

Use the face detection option to avoid face deformation

To detect faces prior rescaling use the -face flag. There is no need to provide a face classification cascade file, since it's already embedded into the generated binary file. The sample code below will rescale the provided image with 20% but will search for human faces prior rescaling.

For face detection related settings please check the Pigo documentation.

$ caire -in input.jpg -out output.jpg -face=1 -cc="data/facefinder" -perc=1 -width=20

Other options

In case you wish to scale down the image by a specific percentage, it can be used the -perc boolean flag. In this case the values provided for the width and height options are expressed in percentage and not pixel values. For example to reduce the image dimension by 20% both horizontally and vertically you can use the following command:

$ caire -in input/source.jpg -out ./out.jpg -perc=1 -width=20 -height=20 -debug=false

Also the library supports the -square option. When this option is used the image will be resized to a square, based on the shortest edge.

When an image is resized both horizontally and vertically, the algorithm will try to rescale it prior resizing, but also preserving the image aspect ratio, then the seam carving algorithm is applied only to the remaining points. Ex. : given an image of dimensions 2048x1536 if we want to resize to the 1024x500, the tool first rescale the image to 1024x768 and will remove only the remaining 268px.

The CLI application of the library can also process the images from a specific directory concurrently boosting up the processing speed considerably.

$ caire -in ./input-directory -out ./output-directory

You can also use stdin and stdout with -:

$ cat input/source.jpg | caire -in - -out - >out.jpg

in and out default to - so you can also use:

$ cat input/source.jpg | caire >out.jpg
$ caire -out out.jpg < input/source.jpg

Caire integrations

snapcraft caire

Results

Shrunk images

Original Shrunk
broadway_tower_edit broadway_tower_edit
waterfall waterfall
dubai dubai
boat boat

Enlarged images

Original Extended
gasadalur gasadalur
dubai dubai

Useful resources

Author

License

Copyright © 2018 Endre Simo

This project is under the MIT License. See the LICENSE file for the full license text.