added cv::copyMakeBorder to T-API

This commit is contained in:
Ilya Lavrenov
2013-12-02 23:45:16 +04:00
parent 5b5f5878ce
commit 474fc887a6
6 changed files with 334 additions and 3 deletions

View File

@@ -446,7 +446,7 @@ OCL_INSTANTIATE_TEST_CASE_P(ImgprocTestBase, CopyMakeBorder, Combine(
testing::Values((MatDepth)CV_8U, (MatDepth)CV_16S, (MatDepth)CV_32S, (MatDepth)CV_32F),
testing::Values(Channels(1), Channels(3), (Channels)4),
Bool(), // border isolated or not
Values((BorderType)BORDER_REPLICATE, (BorderType)BORDER_REFLECT,
Values((BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE, (BorderType)BORDER_REFLECT,
(BorderType)BORDER_WRAP, (BorderType)BORDER_REFLECT_101),
Bool()));