Small fixed #3

pull/30/head
Yury Zemlyanskiy 12 years ago
parent 036258b8da
commit 66ce62cd0d
  1. 12
      modules/video/src/simpleflow.cpp

@ -517,8 +517,8 @@ CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,
flow,
averaging_radius,
max_flow,
sigma_dist,
sigma_color);
(float)sigma_dist,
(float)sigma_color);
calcOpticalFlowSingleScaleSF(curr_to_extended,
curr_from_extended,
@ -526,8 +526,8 @@ CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,
flow_inv,
averaging_radius,
max_flow,
sigma_dist,
sigma_color);
(float)sigma_dist,
(float)sigma_color);
removeOcclusions(flow,
flow_inv,
@ -586,9 +586,9 @@ CV_EXPORTS_W void calcOpticalFlowSF(Mat& from,
prev_from,
confidence,
flow,
(float)upscale_averaging_radius,
upscale_averaging_radius,
(float)upscale_sigma_dist,
upscale_sigma_color);
(float)upscale_sigma_color);
flow_inv = upscaleOpticalFlow(curr_rows,
curr_cols,

Loading…
Cancel
Save