Image Processing in C#
What is the right start in image processing using C# I need to know the tools and algorithm开发者_开发技巧s to start understanding Thanks
There is a great series on Code Project by Christian Graus which you might find useful:
Image Processing for Dummies with C# and GDI+ Part 1 - Per Pixel Filters
Image Processing for Dummies with C# and GDI+ Part 2 - Convolution Filters
Image Processing for Dummies with C# and GDI+ Part 3 - Edge Detection Filters
Image Processing for Dummies with C# and GDI+ Part 4 - Bilinear Filters and Resizing
Image Processing for Dummies with C# and GDI+ Part 5 - Displacement filters, including swirl
Image Processing for Dummies with C# and GDI+ Part 6 - The HSL color space
http://www.tmorley.net/ has downloadable PDF guides that explain the basics of image processing algorithms and takes you step-by-step through writing C# programs to process images. You can also download the code and executables.
System.Drawing Namespace is what you are looking for.
精彩评论