v2mixer.livev2.comDIGITIZED as NEW VERSION
- the Effect Color Matrix for Video Editor
- function for
- the color matrix, for recount the alpha, red, green, blue channels of video or images
- the dialog

- the parameters
- red matrix, the matrix for how get the result as red. the matrix count by a * R + b * G + c * B + d * A + e.
- R is the current image red color, G is it green color, B is it blue color, A is it alpha (the transparency).
- for example 1,0,0,0,0 mean a,b,c,d,e are 1,0,0,0,0. so the result its 1 * R + 0 *G + 0 * B + 0 * A + 0 = R, nothing changed.
- green, blue, alpha matrix, work same as red matrix.
- examples
- Null matrix, for
, unchanged
1, 0, 0, 0, 0
0, 1, 0, 0, 0
0, 0, 1, 0, 0
0, 0, 0, 1, 0 - Red all matrix, for

0.6, 0.6, 0.6, 0, 0
0, 0, 0, 0, 0
0, 0, 0, 0, 0
0, 0, 0, 1, 0 - double Red matrix, for

2, 0, 0, 0, 0
0, 1, 0, 0, 0
0, 0, 1, 0, 0
0, 0, 0, 1, 0 - Green focus matrix, for

0.6, 0, 0, 0, 0
0, 1, 0, 0, 0
0, 0, 0.6, 0, 0
0, 0, 0, 1, 0 - 1.4 times the brightness, for

1.4, 0, 0, 0, 0
0, 1.4, 0, 0, 0
0, 0, 1.4, 0, 0
0, 0, 0, 1, 0 - Gray by Red matrix, for

1, 0, 0, 0, 0
1, 0, 0, 0, 0
1, 0, 0, 0, 0
0, 0, 0, 1, 0 - Binrary matrix, for

255, 0, 0, 0, -24480
0, 255, 0, 0, -24480
0, 0, 255, 0, -24480
0, 0, 0, 1, 0
- note