BLOB - Support RGBA

This commit is contained in:
Hamdi Sahloul 2018-01-07 14:30:40 +09:00
parent 004a1cd64a
commit 2d2499f610

View File

@ -311,7 +311,7 @@ void SimpleBlobDetectorImpl::detect(InputArray image, std::vector<cv::KeyPoint>&
//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();