The mat function pop_back does not seem to exist in Java+OpenCv 3.2.X
I am looking to create some training data in a Mat for a SVM. After I use:
trainingImages.push_back(img);
I was expecting to be able to do:
System.out.println( trainingImages.pop_back(img) );
In eclipse this function does not seem to exist: (I don't have enough karma to post inline images)
imgur.com/76zYpAj
And I am using openCV 3.2.0 which I thought would have this functionality:
docs.opencv.org/3.2.0/d3/d63/classcv_1_1Mat.html#a88bbb01901fdfe3f1d0592c592e8757c
I am new to openCV and not sure if I am making a simple mistake. Does anyone have any thoughts?
could you also highlight, why you think, you need to pop_back() anything at all?
I thought I would need it for SVM work but it looks like I do not. So not having it worked out.