mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 14:36:36 +08:00
Merge pull request #22937 from asmorkalov:as/issue_22893
This commit is contained in:
commit
ebaee3ea21
4
3rdparty/carotene/hal/tegra_hal.hpp
vendored
4
3rdparty/carotene/hal/tegra_hal.hpp
vendored
@ -1296,13 +1296,13 @@ struct MorphCtx
|
||||
CAROTENE_NS::BORDER_MODE border;
|
||||
uchar borderValues[4];
|
||||
};
|
||||
inline int TEGRA_MORPHINIT(cvhalFilter2D **context, int operation, int src_type, int dst_type, int, int,
|
||||
inline int TEGRA_MORPHINIT(cvhalFilter2D **context, int operation, int src_type, int dst_type, int width, int height,
|
||||
int kernel_type, uchar *kernel_data, size_t kernel_step, int kernel_width, int kernel_height, int anchor_x, int anchor_y,
|
||||
int borderType, const double borderValue[4], int iterations, bool allowSubmatrix, bool allowInplace)
|
||||
{
|
||||
if(!context || !kernel_data || src_type != dst_type ||
|
||||
CV_MAT_DEPTH(src_type) != CV_8U || src_type < 0 || (src_type >> CV_CN_SHIFT) > 3 ||
|
||||
|
||||
width < kernel_width || height < kernel_height ||
|
||||
allowSubmatrix || allowInplace || iterations != 1 ||
|
||||
!CAROTENE_NS::isSupportedConfiguration())
|
||||
return CV_HAL_ERROR_NOT_IMPLEMENTED;
|
||||
|
@ -2366,5 +2366,18 @@ TEST(Imgproc_GaussianBlur, regression_11303)
|
||||
EXPECT_LE(cv::norm(src, dst, NORM_L2), 1e-3);
|
||||
}
|
||||
|
||||
TEST(Imgproc, morphologyEx_small_input_22893)
|
||||
{
|
||||
char input_data[] = {1, 2, 3, 4};
|
||||
char gold_data[] = {2, 3, 4, 4};
|
||||
cv::Mat img(1, 4, CV_8UC1, input_data);
|
||||
cv::Mat gold(1, 4, CV_8UC1, gold_data);
|
||||
|
||||
cv::Mat kernel = getStructuringElement(cv::MORPH_RECT, cv::Size(4,4));
|
||||
cv::Mat result;
|
||||
morphologyEx(img, result, cv::MORPH_DILATE, kernel);
|
||||
|
||||
ASSERT_EQ(0, cvtest::norm(result, gold, NORM_INF));
|
||||
}
|
||||
|
||||
}} // namespace
|
||||
|
Loading…
Reference in New Issue
Block a user