public Cv.Core.Point2f At(uint pos) { Cv.Core.Exception exception = new Cv.Core.Exception(); Cv.Core.Point2f element = new Cv.Core.Point2f(au_std_vectorPoint2f_at(cppPtr, pos, exception.cppPtr), DeleteResponsibility.False); exception.Check(); return(element); }
public unsafe Cv.Core.Point2f[] Data() { System.IntPtr *dataPtr = au_std_vectorPoint2f_data(cppPtr); uint size = Size(); Cv.Core.Point2f[] data = new Cv.Core.Point2f[size]; for (int i = 0; i < size; i++) { data[i] = new Cv.Core.Point2f(dataPtr[i], DeleteResponsibility.False); } return(data); }
public void PushBack(Cv.Core.Point2f value) { au_std_vectorPoint2f_push_back(cppPtr, value.cppPtr); }