2016-10-31 16:13:19 +01:00
|
|
|
// Copyright 2014 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package affine
|
|
|
|
|
|
|
|
import (
|
2017-10-14 16:58:09 +02:00
|
|
|
"image/color"
|
2016-10-31 16:13:19 +01:00
|
|
|
"math"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ColorMDim is a dimension of a ColorM.
|
|
|
|
const ColorMDim = 5
|
|
|
|
|
2017-01-19 16:37:51 +01:00
|
|
|
var (
|
2018-07-25 21:07:32 +02:00
|
|
|
colorMIdentity = []float32{
|
2018-02-12 10:14:26 +01:00
|
|
|
1, 0, 0, 0,
|
|
|
|
0, 1, 0, 0,
|
|
|
|
0, 0, 1, 0,
|
|
|
|
0, 0, 0, 1,
|
|
|
|
0, 0, 0, 0,
|
2017-01-17 18:23:52 +01:00
|
|
|
}
|
2017-01-19 16:37:51 +01:00
|
|
|
)
|
2017-01-17 18:23:52 +01:00
|
|
|
|
2016-10-31 16:13:19 +01:00
|
|
|
// A ColorM represents a matrix to transform coloring when rendering an image.
|
|
|
|
//
|
|
|
|
// A ColorM is applied to the source alpha color
|
|
|
|
// while an Image's pixels' format is alpha premultiplied.
|
|
|
|
// Before applying a matrix, a color is un-multiplied, and after applying the matrix,
|
|
|
|
// the color is multiplied again.
|
|
|
|
//
|
2018-02-27 18:21:07 +01:00
|
|
|
// The nil and initial value is identity.
|
2016-10-31 16:13:19 +01:00
|
|
|
type ColorM struct {
|
2017-01-19 16:37:51 +01:00
|
|
|
// When elements is nil, this matrix is identity.
|
2018-02-19 17:17:21 +01:00
|
|
|
// elements are immutable and a new array must be created when updating.
|
2018-07-25 21:07:32 +02:00
|
|
|
// Note that elements are transposed for OpenGL.
|
|
|
|
elements []float32
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
|
|
|
|
2018-02-19 16:33:56 +01:00
|
|
|
func clamp(x float32) float32 {
|
2017-10-14 16:58:09 +02:00
|
|
|
if x > 1 {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if x < 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
|
2018-02-27 18:08:13 +01:00
|
|
|
func (c *ColorM) isInited() bool {
|
2018-07-25 21:07:32 +02:00
|
|
|
return c != nil && c.elements != nil
|
2018-02-27 18:08:13 +01:00
|
|
|
}
|
|
|
|
|
2017-10-14 16:58:09 +02:00
|
|
|
func (c *ColorM) Apply(clr color.Color) color.Color {
|
2018-02-27 18:08:13 +01:00
|
|
|
if !c.isInited() {
|
2017-10-14 16:58:09 +02:00
|
|
|
return clr
|
|
|
|
}
|
|
|
|
r, g, b, a := clr.RGBA()
|
2018-02-27 04:16:16 +01:00
|
|
|
rf, gf, bf, af := float32(0.0), float32(0.0), float32(0.0), float32(0.0)
|
2018-02-12 10:14:26 +01:00
|
|
|
// Unmultiply alpha
|
2018-02-27 04:16:16 +01:00
|
|
|
if a > 0 {
|
|
|
|
rf = float32(r) / float32(a)
|
|
|
|
gf = float32(g) / float32(a)
|
|
|
|
bf = float32(b) / float32(a)
|
|
|
|
af = float32(a) / 0xffff
|
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
es := c.elements
|
|
|
|
if es == nil {
|
|
|
|
es = colorMIdentity
|
2018-03-18 15:07:05 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
rf2 := es[0]*rf + es[4]*gf + es[8]*bf + es[12]*af + es[16]
|
|
|
|
gf2 := es[1]*rf + es[5]*gf + es[9]*bf + es[13]*af + es[17]
|
|
|
|
bf2 := es[2]*rf + es[6]*gf + es[10]*bf + es[14]*af + es[18]
|
|
|
|
af2 := es[3]*rf + es[7]*gf + es[11]*bf + es[15]*af + es[19]
|
2017-10-14 16:58:09 +02:00
|
|
|
rf2 = clamp(rf2)
|
|
|
|
gf2 = clamp(gf2)
|
|
|
|
bf2 = clamp(bf2)
|
|
|
|
af2 = clamp(af2)
|
|
|
|
return color.NRGBA64{
|
|
|
|
R: uint16(rf2 * 0xffff),
|
|
|
|
G: uint16(gf2 * 0xffff),
|
|
|
|
B: uint16(bf2 * 0xffff),
|
|
|
|
A: uint16(af2 * 0xffff),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-25 21:07:32 +02:00
|
|
|
func (c *ColorM) UnsafeElements() []float32 {
|
2018-02-27 18:08:13 +01:00
|
|
|
if !c.isInited() {
|
2018-07-25 21:07:32 +02:00
|
|
|
return colorMIdentity
|
2018-03-18 15:07:05 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
return c.elements
|
2017-01-19 04:07:31 +01:00
|
|
|
}
|
|
|
|
|
2017-01-18 18:29:49 +01:00
|
|
|
// SetElement sets an element at (i, j).
|
2018-02-27 17:40:37 +01:00
|
|
|
func (c *ColorM) SetElement(i, j int, element float32) *ColorM {
|
|
|
|
newC := &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: make([]float32, 20),
|
2018-02-27 17:40:37 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
copy(newC.elements, colorMIdentity)
|
2018-03-18 15:07:05 +01:00
|
|
|
if c.isInited() {
|
2018-07-25 21:07:32 +02:00
|
|
|
copy(newC.elements, c.elements)
|
2017-01-19 16:37:51 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
newC.elements[i+j*(ColorMDim-1)] = element
|
2018-02-27 17:40:37 +01:00
|
|
|
return newC
|
2017-01-18 18:29:49 +01:00
|
|
|
}
|
|
|
|
|
2016-10-31 16:13:19 +01:00
|
|
|
// Concat multiplies a color matrix with the other color matrix.
|
|
|
|
// This is same as muptiplying the matrix other and the matrix c in this order.
|
2018-02-27 17:40:37 +01:00
|
|
|
func (c *ColorM) Concat(other *ColorM) *ColorM {
|
2018-02-27 18:08:13 +01:00
|
|
|
if !c.isInited() {
|
2018-02-27 17:40:37 +01:00
|
|
|
return other
|
|
|
|
}
|
2018-02-27 18:08:13 +01:00
|
|
|
if !other.isInited() {
|
2018-02-27 17:40:37 +01:00
|
|
|
return c
|
|
|
|
}
|
2018-02-12 10:14:26 +01:00
|
|
|
|
2018-07-25 21:07:32 +02:00
|
|
|
lhs := colorMIdentity
|
|
|
|
rhs := colorMIdentity
|
2018-02-27 18:08:13 +01:00
|
|
|
if other.isInited() {
|
2018-07-25 21:07:32 +02:00
|
|
|
lhs = other.elements
|
2018-02-27 17:40:37 +01:00
|
|
|
}
|
2018-02-27 18:08:13 +01:00
|
|
|
if c.isInited() {
|
2018-07-25 21:07:32 +02:00
|
|
|
rhs = c.elements
|
2018-02-27 17:40:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: mulAffine(lhs, rhs, ColorMDim),
|
2017-01-19 16:46:25 +01:00
|
|
|
}
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
|
|
|
|
2017-01-18 18:29:49 +01:00
|
|
|
// Add is deprecated.
|
2018-02-27 17:40:37 +01:00
|
|
|
func (c *ColorM) Add(other *ColorM) *ColorM {
|
2018-07-25 21:07:32 +02:00
|
|
|
lhs := colorMIdentity
|
|
|
|
rhs := colorMIdentity
|
2018-02-27 18:08:13 +01:00
|
|
|
if other.isInited() {
|
2018-07-25 21:07:32 +02:00
|
|
|
lhs = other.elements
|
2018-02-12 19:06:19 +01:00
|
|
|
}
|
2018-02-27 18:08:13 +01:00
|
|
|
if c.isInited() {
|
2018-07-25 21:07:32 +02:00
|
|
|
rhs = c.elements
|
2018-02-12 19:06:19 +01:00
|
|
|
}
|
|
|
|
|
2018-02-27 17:40:37 +01:00
|
|
|
newC := &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: make([]float32, 20),
|
2018-02-27 17:40:37 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
for i := range lhs {
|
|
|
|
newC.elements[i] = lhs[i] + rhs[i]
|
2018-02-12 19:06:19 +01:00
|
|
|
}
|
|
|
|
|
2018-02-27 17:40:37 +01:00
|
|
|
return newC
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Scale scales the matrix by (r, g, b, a).
|
2018-02-27 17:40:37 +01:00
|
|
|
func (c *ColorM) Scale(r, g, b, a float32) *ColorM {
|
2018-02-27 18:08:13 +01:00
|
|
|
if !c.isInited() {
|
2018-02-27 17:40:37 +01:00
|
|
|
return &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: []float32{
|
2018-02-27 17:40:37 +01:00
|
|
|
r, 0, 0, 0,
|
|
|
|
0, g, 0, 0,
|
|
|
|
0, 0, b, 0,
|
|
|
|
0, 0, 0, a,
|
2018-07-25 21:07:32 +02:00
|
|
|
0, 0, 0, 0,
|
2018-02-27 17:40:37 +01:00
|
|
|
},
|
2017-01-19 16:59:33 +01:00
|
|
|
}
|
2017-01-19 16:37:51 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
es := make([]float32, len(colorMIdentity))
|
|
|
|
copy(es, c.elements)
|
|
|
|
for i := 0; i < ColorMDim; i++ {
|
|
|
|
es[i*(ColorMDim-1)] *= r
|
|
|
|
es[i*(ColorMDim-1)+1] *= g
|
|
|
|
es[i*(ColorMDim-1)+2] *= b
|
|
|
|
es[i*(ColorMDim-1)+3] *= a
|
2018-02-12 10:14:26 +01:00
|
|
|
}
|
|
|
|
|
2018-02-27 17:40:37 +01:00
|
|
|
return &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: es,
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Translate translates the matrix by (r, g, b, a).
|
2018-02-27 17:40:37 +01:00
|
|
|
func (c *ColorM) Translate(r, g, b, a float32) *ColorM {
|
2018-02-27 18:08:13 +01:00
|
|
|
if !c.isInited() {
|
2018-02-27 17:40:37 +01:00
|
|
|
return &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: []float32{
|
|
|
|
1, 0, 0, 0,
|
|
|
|
0, 1, 0, 0,
|
|
|
|
0, 0, 1, 0,
|
|
|
|
0, 0, 0, 1,
|
|
|
|
r, g, b, a,
|
|
|
|
},
|
2018-02-27 17:40:37 +01:00
|
|
|
}
|
2017-01-19 16:37:51 +01:00
|
|
|
}
|
2018-07-25 21:07:32 +02:00
|
|
|
es := make([]float32, len(colorMIdentity))
|
|
|
|
copy(es, c.elements)
|
|
|
|
es[16] += r
|
|
|
|
es[17] += g
|
|
|
|
es[18] += b
|
|
|
|
es[19] += a
|
2018-02-27 17:40:37 +01:00
|
|
|
return &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: es,
|
2018-02-27 17:40:37 +01:00
|
|
|
}
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
// The YCbCr value ranges are:
|
|
|
|
// Y: [ 0 - 1 ]
|
|
|
|
// Cb: [-0.5 - 0.5]
|
|
|
|
// Cr: [-0.5 - 0.5]
|
|
|
|
|
2018-02-27 17:40:37 +01:00
|
|
|
rgbToYCbCr = &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: []float32{
|
2018-02-19 16:53:53 +01:00
|
|
|
0.2990, -0.1687, 0.5000, 0,
|
|
|
|
0.5870, -0.3313, -0.4187, 0,
|
|
|
|
0.1140, 0.5000, -0.0813, 0,
|
2018-02-12 10:14:26 +01:00
|
|
|
0, 0, 0, 1,
|
2018-07-25 21:07:32 +02:00
|
|
|
0, 0, 0, 0,
|
2017-01-19 16:37:51 +01:00
|
|
|
},
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
2018-02-27 17:40:37 +01:00
|
|
|
yCbCrToRgb = &ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: []float32{
|
2018-02-19 16:53:53 +01:00
|
|
|
1, 1, 1, 0,
|
|
|
|
0, -0.34414, 1.77200, 0,
|
|
|
|
1.40200, -0.71414, 0, 0,
|
2018-02-12 10:14:26 +01:00
|
|
|
0, 0, 0, 1,
|
2018-07-25 21:07:32 +02:00
|
|
|
0, 0, 0, 0,
|
2017-01-19 16:37:51 +01:00
|
|
|
},
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-01-19 16:37:51 +01:00
|
|
|
// ChangeHSV changes HSV (Hue-Saturation-Value) elements.
|
2016-10-31 16:13:19 +01:00
|
|
|
// hueTheta is a radian value to ratate hue.
|
|
|
|
// saturationScale is a value to scale saturation.
|
|
|
|
// valueScale is a value to scale value (a.k.a. brightness).
|
|
|
|
//
|
|
|
|
// This conversion uses RGB to/from YCrCb conversion.
|
2018-02-27 17:40:37 +01:00
|
|
|
func (c *ColorM) ChangeHSV(hueTheta float64, saturationScale float32, valueScale float32) *ColorM {
|
2016-10-31 16:13:19 +01:00
|
|
|
sin, cos := math.Sincos(hueTheta)
|
2018-02-19 16:33:56 +01:00
|
|
|
s32, c32 := float32(sin), float32(cos)
|
2018-02-27 17:40:37 +01:00
|
|
|
c = c.Concat(rgbToYCbCr)
|
|
|
|
c = c.Concat(&ColorM{
|
2018-07-25 21:07:32 +02:00
|
|
|
elements: []float32{
|
2018-02-12 10:14:26 +01:00
|
|
|
1, 0, 0, 0,
|
2018-02-19 16:53:53 +01:00
|
|
|
0, c32, s32, 0,
|
|
|
|
0, -s32, c32, 0,
|
2018-02-12 10:14:26 +01:00
|
|
|
0, 0, 0, 1,
|
2018-07-25 21:07:32 +02:00
|
|
|
0, 0, 0, 0,
|
2017-01-19 16:37:51 +01:00
|
|
|
},
|
2016-10-31 16:13:19 +01:00
|
|
|
})
|
|
|
|
s := saturationScale
|
|
|
|
v := valueScale
|
2018-02-27 17:40:37 +01:00
|
|
|
c = c.Scale(v, s*v, s*v, 1)
|
|
|
|
c = c.Concat(yCbCrToRgb)
|
|
|
|
return c
|
2016-10-31 16:13:19 +01:00
|
|
|
}
|