get method
Returns the specified VideoCapture property.
https://docs.opencv.org/4.x/d8/dfe/classcv_1_1VideoCapture.html#aa6480e6972ef4c00d74814ec841a2939
Implementation
double get(int propId) {
return cvRunArena<double>((arena) {
final p = arena<ffi.Double>();
cvRun(() => cvideo.VideoCapture_Get(ref, propId, p));
return p.value;
});
}