Tagged Questions
A color matrix is a 5x4 matrix which typically allows to do color operations on 4-channel images.
7
votes
5answers
488 views
How to set same (constant) hue value for every pixel's of an image by using ColorMatrix?
I am trying to set a constant hue value for entire image with using ColorMatrix. My goal is to make entire image look with same color without loosing brightness of any area. I found a way to shift the ...
7
votes
5answers
3k views
Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue
I'm working on a UI for an app, and I'm attempting to use grayscale icons, and allow the user to change the theme to a color of their choosing. To do this, I'm trying to just apply a ColorFilter of ...
4
votes
1answer
207 views
Clarification about how ColorMatrix transformations work
I'm doing some work on an image processing app (for fun) and am struggling to fully understand how ColorMatrix transformations work. I get the basics of linear/affine transformations, and can get by ...
4
votes
2answers
368 views
How I use .NET ColorMatrix to change colors?
I have an image that I would like to set pixels to White if pixel(x,y).R < 165.
After that I would like to set Black all the pixels that aren't White.
Can I do this using ColorMatrix?
4
votes
1answer
181 views
Any good source of explanatory documentation on ColorMatrix?
I'd like to try using ColorMatrix, but am only able to find examples that convert an image to grayscale. And even then, they tend to be presented as a chunk of 'magic numbers' code with no ...
2
votes
1answer
231 views
How to understand and choose values when working with ColorMatrix?
I have read the ColorMatrix documentation and it says the following:
5x4 matrix for transforming the color+alpha components of a Bitmap.
The matrix is stored in a single array and its ...
2
votes
2answers
498 views
How to use ColorMatrix in .NET to change Brightness, Color, Saturation, Hue
I have a 'Bitmap' type containing some random bitmap data. I've written my own adjustments for Brightness, Color, Saturation, and Hue that act on each bit individually and, unsurprisingly, it's awful ...
2
votes
1answer
303 views
How to Use Calculated Color Values with ColorMatrix?
I am changing color values of each pixel in an image based on a calculation. The problem is that this takes over 5 seconds on my machine with a 1000x1333 image and I'm looking for a way to optimize it ...
2
votes
3answers
282 views
finding matrix through optimisation
I am looking for algorithm to solve the following problem :
I have two sets of vectors, and I want to find the matrix that best approximate the transformation from the input vectors to the output ...
2
votes
4answers
1k views
Rotate Hue using ImageAttributes in C#
How can I rotate the hue of an image using GDI+'s ImageAttributes (and presumably ColorMatrix)?
Note that I want to rotate the hue, not tint the image.
EDIT: By rotating the hue, I mean that each ...
2
votes
1answer
211 views
How to deal with ColorMatrix overflows?
Before I start here, I am using C#. I would like to do some transforms using the ColorMatrix class. The problem is that sometimes an overflow occurs for r, g, or b. Instead of clamping the value at ...
1
vote
0answers
52 views
How to increase the color tone of a picture in C#?
I have got the picture that has got a text in it. I have already converted that picture into grayscale by using the ColorMatrix.
public Bitmap MakeGrayscale(Bitmap original)
{
//create a blank ...
1
vote
1answer
113 views
Bitmap looks different after ColorMatrix transform on XP and Win7
I want my webBrowser to look transparent. My code looks like that:
Bitmap backGroungImage = new Bitmap(Width, Height);
myWebBrowser1.Visible = false;
...
1
vote
2answers
302 views
WPF equivalent to GDI+'s ColorMatrix
I noticed that WPF has the System.Windows.Media(.Imaging) namespaces that contain a lot of the same functionality as System.Drawing(.Imagine), but I don't see an equivalent to the ColorMatrix in GDI+. ...
1
vote
1answer
287 views
Apply a ColorMatrix making use of GPU
I have a C# application that recolors an image using ColorMatrix. I understand that ColorMatrix doesn't make use of the GPU. What would be the best avenue to explore if I wanted to use the GPU to ...
0
votes
1answer
82 views
How can we represent a “double” type matrix as an RGB image in Matlab?
I did a wavelet transforms of 4 images and finally after my modifications(ie.,fusion of these images), and taking inverse wavelet transform, I am left with the wavelet coefficients - approximation ...
0
votes
2answers
475 views
colorTransform equivalent color matrix
I'm trying to convert a simple FXG to SVG.
The conversion is pretty much straightforward, but I'm encountering a color manipulation problem.
The FXG have a base shades of gray path, and I apply a ...
0
votes
1answer
518 views
Make Black darker using colorMatrix in Android
I currently have the following code to get a Bitmap object, strip the color and then turn it red which works but I need the darker elements of the image to come through as darker, at the moment it's ...
0
votes
1answer
37 views
How can I reverse the colors of an image with the tool ColorMatrix?
What values do I have to put in the Matrix?
Dim clMatriz As Imaging.ColorMatrix = New Imaging.ColorMatrix(New Single()() _
{New Single() {¿?, 0, 0, 0, 0}, _
New Single() {0, ¿?, 0, 0, 0}, _
New ...
0
votes
1answer
269 views
Collection of Various Color Matrices for Bitmap Manipulation
I've been messing around a bit with some low-level bitmap manipulation and having been creating some various color matrices to apply to bitmap data to add "filters" (for lack of a better term).
I ...
0
votes
1answer
305 views
How to change colormatrix x,y coordinate of image?
I am developing an app which allows users to color the images. I have the color matrix of the color I want to apply but the problem is instead of changing color of x y coordinates whole image gets ...
0
votes
1answer
42 views
Required Info to choose colormatrix for getting original Image
I have a requirement where i need to mask and clear the masked portion
of the images.
I am done with masking part of the requirement. I am using color
matrix to mask my image also the selected portion ...
0
votes
2answers
1k views
What would be a good TRUE black and white colormatrix?
I want to convert an image from color to B/W (i.e. no grayscale, just black and white). Does anyone have a good colormatrix to achieve this?
0
votes
1answer
302 views
Strange behaviour when appying a ColorMatrix to an image in .Net, WinForms
The method below, takes a colour matrix and applies it to the supplied image. There are a couple of things to note:
(1) It is not a function
(2) The same image is used to create the graphics object, ...
0
votes
2answers
814 views
How to continuously fade a BitmapData to a certain color?
I'm drawing stuff on a bitmapData and I need to continuously fade every pixel to 0x808080 while still drawing (its for a DisplacementMapFilter)...
I think this illustrates my problem:
...
0
votes
2answers
228 views
How can we use the colormatrix only a part of image rather than whole image?
I know the use of colormatrix. but this work on the whole image. is there any way to work with colormatrix only a part of image rather than whole image.
eg i want to give the brightness of only ...