Skip to content

Commit

Permalink
moved part of video to contrib/{outflow, bgsegm}; moved matlab to con…
Browse files Browse the repository at this point in the history
…trib
  • Loading branch information
vpisarev committed Aug 10, 2014
1 parent 4de4ff5 commit d0137b6
Show file tree
Hide file tree
Showing 62 changed files with 55 additions and 159,913 deletions.
61,401 changes: 0 additions & 61,401 deletions data/softcascade/inria_caltech-17.01.2013.xml

This file was deleted.

61,409 changes: 0 additions & 61,409 deletions data/softcascade/soft-cascade-17.12.2012.xml

This file was deleted.

27 changes: 15 additions & 12 deletions modules/imgproc/src/smooth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2172,18 +2172,21 @@ void cv::medianBlur( InputArray _src0, OutputArray _dst, int ksize )
} \
while ((void)0, 0)

Ipp32s bufSize;
IppiSize dstRoiSize = ippiSize(dst.cols, dst.rows), maskSize = ippiSize(ksize, ksize);

int type = src0.type();
if (type == CV_8UC1)
IPP_FILTER_MEDIAN_BORDER(Ipp8u, ipp8u, 8u_C1R);
else if (type == CV_16UC1)
IPP_FILTER_MEDIAN_BORDER(Ipp16u, ipp16u, 16u_C1R);
else if (type == CV_16SC1)
IPP_FILTER_MEDIAN_BORDER(Ipp16s, ipp16s, 16s_C1R);
else if (type == CV_32FC1)
IPP_FILTER_MEDIAN_BORDER(Ipp32f, ipp32f, 32f_C1R);
if( ksize <= 5 )
{
Ipp32s bufSize;
IppiSize dstRoiSize = ippiSize(dst.cols, dst.rows), maskSize = ippiSize(ksize, ksize);

int type = src0.type();
if (type == CV_8UC1)
IPP_FILTER_MEDIAN_BORDER(Ipp8u, ipp8u, 8u_C1R);
else if (type == CV_16UC1)
IPP_FILTER_MEDIAN_BORDER(Ipp16u, ipp16u, 16u_C1R);
else if (type == CV_16SC1)
IPP_FILTER_MEDIAN_BORDER(Ipp16s, ipp16s, 16s_C1R);
else if (type == CV_32FC1)
IPP_FILTER_MEDIAN_BORDER(Ipp32f, ipp32f, 32f_C1R);
}
#undef IPP_FILTER_MEDIAN_BORDER
#endif

Expand Down
312 changes: 0 additions & 312 deletions modules/matlab/CMakeLists.txt

This file was deleted.

42 changes: 0 additions & 42 deletions modules/matlab/LICENSE

This file was deleted.

Loading

0 comments on commit d0137b6

Please sign in to comment.