Quote:
Originally Posted by RyanCahoon
While it's possible to use unsafe pointers directly in C# using a similar syntax to that of C, this is generally advised against. Usually pointers are stored as IntPtr-typed values in C# - you can see an example of this here: http://www.emgu.com/wiki/index.php/T...gu.CV.CvInvoke Note that this is a rather low-level interface in emguCV, though, and like I said earlier, you should probably be using the managed classes instead: http://www.emgu.com/wiki/index.php/Working_with_Images
What makes you think you think you need to use pointers with emguCV?
|
I need to know more about using pointers in emgu because emgu has some methods, specifically optical flow and the PyrLK method, that only accept pointers as parameters. Not to mention knowing how to work pointers would be a good skill to have.