Commit 9f5d9742 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

Fixed some typos

parent 681ac9be
...@@ -121,7 +121,7 @@ namespace cv { namespace gpu { namespace device { namespace optflow_farneback ...@@ -121,7 +121,7 @@ namespace cv { namespace gpu { namespace device { namespace optflow_farneback
} }
void setPolinomialExpansionConsts( void setPolynomialExpansionConsts(
int polyN, const float *g, const float *xg, const float *xxg, int polyN, const float *g, const float *xg, const float *xxg,
float ig11, float ig03, float ig33, float ig55) float ig11, float ig03, float ig33, float ig55)
{ {
......
...@@ -63,7 +63,7 @@ void cv::gpu::FarnebackOpticalFlow::operator ()(const GpuMat&, const GpuMat&, Gp ...@@ -63,7 +63,7 @@ void cv::gpu::FarnebackOpticalFlow::operator ()(const GpuMat&, const GpuMat&, Gp
namespace cv { namespace gpu { namespace device { namespace optflow_farneback namespace cv { namespace gpu { namespace device { namespace optflow_farneback
{ {
void setPolinomialExpansionConsts( void setPolynomialExpansionConsts(
int polyN, const float *g, const float *xg, const float *xxg, int polyN, const float *g, const float *xg, const float *xxg,
float ig11, float ig03, float ig33, float ig55); float ig11, float ig03, float ig33, float ig55);
...@@ -160,7 +160,7 @@ void cv::gpu::FarnebackOpticalFlow::setPolynomialExpansionConsts(int n, double s ...@@ -160,7 +160,7 @@ void cv::gpu::FarnebackOpticalFlow::setPolynomialExpansionConsts(int n, double s
double ig11, ig03, ig33, ig55; double ig11, ig03, ig33, ig55;
prepareGaussian(n, sigma, g, xg, xxg, ig11, ig03, ig33, ig55); prepareGaussian(n, sigma, g, xg, xxg, ig11, ig03, ig33, ig55);
device::optflow_farneback::setPolinomialExpansionConsts(n, g, xg, xxg, ig11, ig03, ig33, ig55); device::optflow_farneback::setPolynomialExpansionConsts(n, g, xg, xxg, ig11, ig03, ig33, ig55);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment