// ###How to create my own filter?### // The row values represent the outputs of new Red (R'), new Green (G'), new Blue (B') and new Alpha (A'). // The columns represent the source input colors, alpha, and the offset translation. //______R_____G_____B______A____OFFSET // R| 1.000 0.000 0.000 0.000 0.000 // G| 0.000 1.000 0.000 0.000 0.000 // B| 0.000 0.000 1.000 0.000 0.000 // A| 0.000 0.000 0.000 1.000 0.000 // This is the identity matrix. This matrix corresponds exactly to the original colors, and so, it does nothing. // R' = (R×1)+(G×0)+(B×0)+(A×0)+(OFFSET×0) = R // G' = (R×0)+(G×1)+(B×0)+(A×0)+(OFFSET×0) = G // B' = (R×0)+(G×0)+(B×1)+(A×0)+(OFFSET×0) = B // A' = (R×0)+(G×0)+(B×0)+(A×1)+(OFFSET×0) = A // Changing the values will allow you to obtain a unique look. // https://fecolormatrix.com/ // Use this site for visual indication on how your new filter will affect images. [ 1.000, 0.000, 0.000, 0.000, 0.000, 0.000, 1.000, 0.000, 0.000, 0.000, 0.000, 0.000, 1.000, 0.000, 0.000, 0.000, 0.000, 0.000, 1.000, 0.000 ]