Documentation
¶
Overview ¶
Package caire is a content aware image resize library, which can rescale the source image seamlessly both vertically and horizontally by eliminating the less important parts of the image.
The package provides a command line interface, supporting various flags for different types of rescaling operations. To check the supported commands type:
$ caire --help
In case you wish to integrate the API in a self constructed environment here is a simple example:
package main import ( "fmt" "github.com/esimov/caire" ) func main() { p := &caire.Processor{ // Initialize struct variables } if err := p.Process(in, out); err != nil { fmt.Printf("Error rescaling image: %s", err.Error()) } }
Index ¶
- func Resize(s SeamCarver, img *image.NRGBA) (image.Image, error)
- type C
- type Carver
- func (c *Carver) AddSeam(img *image.NRGBA, seams []Seam, debug bool) *image.NRGBA
- func (c *Carver) ComputeSeams(p *Processor, img *image.NRGBA) (*image.NRGBA, error)
- func (c *Carver) FindLowestEnergySeams(p *Processor) []Seam
- func (c *Carver) RemoveSeam(img *image.NRGBA, seams []Seam, debug bool) *image.NRGBA
- func (c *Carver) SobelDetector(img *image.NRGBA, threshold float64) *image.NRGBA
- func (c *Carver) StackBlur(img *image.NRGBA, radius uint32) *image.NRGBA
- type D
- type Gui
- type Image
- type Processor
- type Seam
- type SeamCarver
- type ShapeType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Carver ¶
Carver is the main entry struct having as parameters the newly generated image width, height and seam points.
func (*Carver) ComputeSeams ¶
ComputeSeams compute the minimum energy level based on the following logic:
traverse the image from the second row to the last row and compute the cumulative minimum energy M for all possible connected seams for each entry (i, j).
the minimum energy level is calculated by summing up the current pixel value with the minimum pixel value of the neighboring pixels from the previous row.
func (*Carver) FindLowestEnergySeams ¶
FindLowestEnergySeams find the lowest vertical energy seam.
func (*Carver) RemoveSeam ¶
RemoveSeam remove the least important columns based on the stored energy (seams) level.
func (*Carver) SobelDetector ¶ added in v1.4.0
SobelDetector uses the sobel filter operator for detecting image edges. See https://en.wikipedia.org/wiki/Sobel_operator
type D ¶ added in v1.4.4
type D = layout.Dimensions
type Gui ¶ added in v1.4.1
type Gui struct {
// contains filtered or unexported fields
}
Gui is the basic struct containing all of the information needed for the UI operation. It receives the resized image transferred through a channel which is called in a separate goroutine.
func (*Gui) AddHudControl ¶ added in v1.5.0
AddHudControl adds a new hud control for debugging.
type Processor ¶
type Processor struct { FaceAngle float64 SeamColor string MaskPath string RMaskPath string ShapeType ShapeType SobelThreshold int BlurRadius int NewWidth int NewHeight int FaceDetector *pigo.Pigo Spinner *utils.Spinner Mask *image.NRGBA RMask *image.NRGBA DebugMask *image.NRGBA Percentage bool Square bool Debug bool Preview bool FaceDetect bool // contains filtered or unexported fields }
Processor options
func (*Processor) Execute ¶ added in v1.5.0
Execute executes the image resizing process. In case the preview mode is activated it will be invoked in a separate goroutine in order to avoid blocking the main OS thread. Otherwise it will be called normally.
func (*Processor) Process ¶
Process encodes the resized image into an io.Writer interface. We are using the io package, since we can provide different input and output types, as long as they implement the io.Reader and io.Writer interface.
type SeamCarver ¶
SeamCarver defines the Carve interface method, which have to be implemented by the Processor struct.