Tagged Questions

4
votes
1answer
209 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
369 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
1answer
306 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
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
303 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+. ...
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
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 ...