YOLO Detection on Grayscale Images

Hi,
I am trying to detect objects in the grayscale images, but I get the following error.
"The input image channel size (1) must be the same as the network's input channel size (3)."
Per documentation, it says the network accpets single channel as well, but what could be the reason for the error?
Thanks!

2 Comments

Hi,
Which MATLAB are you using?
MATLAB 2020a, and same issue was observed on 2020b.

Sign in to comment.

 Accepted Answer

Sunil Patidar
Sunil Patidar on 10 Nov 2020
Hi Kev,
It seems to be an issue with the 'trainYOLOV2ObjectDetector' function not being able to accept images that are of size [M x N x 1]. As a workaround you might need to duplicate your grayscale image across all three channels, and use a network that accepts [M x N x 3] sized matrices.

1 Comment

It works after converting single channel grayscale into 3 channel grayscale.

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Asked:

Kev
on 3 Nov 2020

Commented:

Kev
on 10 Nov 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!