Merge pull request #2754 from thoinvil:patch-1

pull/2744/merge
Roman Donchenko 11 years ago committed by OpenCV Buildbot
commit eded87de5b
  1. 2
      modules/imgproc/src/smooth.cpp

@ -837,7 +837,7 @@ void cv::GaussianBlur( InputArray _src, OutputArray _dst, Size ksize,
_dst.create( src.size(), src.type() );
Mat dst = _dst.getMat();
if( borderType != BORDER_CONSTANT )
if( borderType != BORDER_CONSTANT && (borderType & BORDER_ISOLATED) != 0 )
{
if( src.rows == 1 )
ksize.height = 1;

Loading…
Cancel
Save