2

What is good book to read on about image processing in C#, and image processing overall.

Image will be taken from a camera and will be searched for certain objects, changes, etc.

jM2.me
  • 3,839
  • 12
  • 44
  • 58

1 Answers1

0

If you're just wanting to to "basic" image manipulation functions, like color adjustments or things like that then you should probably just brush up on basic math and bit manipulation, you'd be surprised what you can accomplish with a few simple tricks (like in this post and this article).

However, if you're serious about image processing I would recommend Algorithms for Image Processing and Computer Vision, the source is in C, but that doesn't change the underlying concepts.

Community
  • 1
  • 1
Brandon Moretz
  • 7,512
  • 3
  • 33
  • 43