Tagged Questions
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 ...
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?
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
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
301 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
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
300 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
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 ...