0
votes
1answer
69 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:
…
2
votes
3answers
150 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 …
0
votes
1answer
43 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 …
1
vote
4answers
275 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
votes
0answers
78 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 …
1
vote
1answer
87 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 …
