Commit 5728612f authored by Jin Ma's avatar Jin Ma

Removed the trailing whitespace

parent 1e8194fd
...@@ -636,4 +636,3 @@ void cv::ocl::MOG2::release() ...@@ -636,4 +636,3 @@ void cv::ocl::MOG2::release()
bgmodelUsedModes_.release(); bgmodelUsedModes_.release();
} }
...@@ -142,7 +142,6 @@ __kernel void mog_withoutLearning_kernel(__global T_FRAME* frame, __global uchar ...@@ -142,7 +142,6 @@ __kernel void mog_withoutLearning_kernel(__global T_FRAME* frame, __global uchar
if (x < frame_col && y < frame_row) if (x < frame_col && y < frame_row)
{ {
T_MEAN_VAR pix = cvt(frame[(y + frame_offset_y) * frame_step + (x + frame_offset_x)]); T_MEAN_VAR pix = cvt(frame[(y + frame_offset_y) * frame_step + (x + frame_offset_x)]);
int kHit = -1; int kHit = -1;
...@@ -179,12 +178,10 @@ __kernel void mog_withoutLearning_kernel(__global T_FRAME* frame, __global uchar ...@@ -179,12 +178,10 @@ __kernel void mog_withoutLearning_kernel(__global T_FRAME* frame, __global uchar
} }
} }
} }
if(kHit < 0 || kHit >= kForeground) if(kHit < 0 || kHit >= kForeground)
fgmask[(y + fgmask_offset_y) * fgmask_step + (x + fgmask_offset_x)] = (uchar) (-1); fgmask[(y + fgmask_offset_y) * fgmask_step + (x + fgmask_offset_x)] = (uchar) (-1);
else else
fgmask[(y + fgmask_offset_y) * fgmask_step + (x + fgmask_offset_x)] = (uchar) (0); fgmask[(y + fgmask_offset_y) * fgmask_step + (x + fgmask_offset_x)] = (uchar) (0);
} }
} }
......
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