what is the difference of Mat and Iplimage
i am using opencv and c++ for my OCR application. There i am confusing with Mat and Iplimage data structures. i saw following both ways,
- IplImage* img = cvLoadImage("C:/MyPic.jpg");
- Mat image = imread( argv[1] );
can any one explain what is the c++ code here? Mat or Iplimage?