First time here? Check out the FAQ!
answered 2013-02-01 03:58:00 -0600
Hey,
I believe your error is in this line:
cap.get double val = (CV_CAP_PROP_FPS);
try this instead:
double val = cap.get(CV_CAP_PROP_FPS);
Hope that helps