Tagged Questions
4
votes
1answer
216 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
389 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
189 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
2answers
519 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
313 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 ...
1
vote
2answers
326 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
315 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, ...