diff --git a/modules/features2d/src/blobdetector.cpp b/modules/features2d/src/blobdetector.cpp index e545891da1..72ff57bda9 100644 --- a/modules/features2d/src/blobdetector.cpp +++ b/modules/features2d/src/blobdetector.cpp @@ -311,7 +311,7 @@ void SimpleBlobDetectorImpl::detect(InputArray image, std::vector& //TODO: support mask keypoints.clear(); Mat grayscaleImage; - if (image.channels() == 3) + if (image.channels() == 3 || image.channels() == 4) cvtColor(image, grayscaleImage, COLOR_BGR2GRAY); else grayscaleImage = image.getMat();