k this is kind of noob of me since I really haven't worked on C and objective c all that much.
Mat mymat(myIplImage, true);
This apparently not only declares mymat as a local variable but also copies the contents over from myIplImage. The problems I can't make of the syntax. I would be more comfortable if it were something like this:
Mat mymat = new Mat(myIplImage, true); // in c++
Can you explain what happened in the background for the original statement?
Thanks,