I am writing an image processing application in C# that needs to be speed optimized for faster performance.
I have been told that using Unsafe Code together with Pointers can speed my algorithm up significantly. Unfortunately, I have no experience with Pointers at all.
How can I make the following example code work with Pointers? (The example multiplies a 640 x 480 pixel image's pixel values by 2, and copies those new values into another 640 x 480 image)
Bookmarks