mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 21:53:48 +08:00
Merge pull request #10536 from Sahloul:bug_fix/BLOB
This commit is contained in:
commit
e3a6d74945
@ -311,7 +311,7 @@ void SimpleBlobDetectorImpl::detect(InputArray image, std::vector<cv::KeyPoint>&
|
|||||||
//TODO: support mask
|
//TODO: support mask
|
||||||
keypoints.clear();
|
keypoints.clear();
|
||||||
Mat grayscaleImage;
|
Mat grayscaleImage;
|
||||||
if (image.channels() == 3)
|
if (image.channels() == 3 || image.channels() == 4)
|
||||||
cvtColor(image, grayscaleImage, COLOR_BGR2GRAY);
|
cvtColor(image, grayscaleImage, COLOR_BGR2GRAY);
|
||||||
else
|
else
|
||||||
grayscaleImage = image.getMat();
|
grayscaleImage = image.getMat();
|
||||||
|
Loading…
Reference in New Issue
Block a user