I want to know how to detect shadow with this article
Afficher commentaires plus anciens
I can't understand many things in this article.
"So next, the non-shadow point’s mean and standard deviations for the sliding window are computed. Now, the pixels that have intensity less than the one standard deviation of the windows are considered shadow pixels. Figure 3 portrays a successful shadow detection process via the proposed framework."
What should I do for this method?
3 commentaires
Jan
le 13 Mai 2018
Create a method to apply a sliding window. Calculate the standard deviation of the intensity. If the central pixel of this window has less intensity, it is considered as shadow.
Try it and post the code, even if it is not working yet. Then it is easier to suggest further improvements.
Note that it is unlikely, that the member of the forum will study your paper and implement the algorithm for you.
sol park
le 20 Mai 2018
sol park
le 21 Mai 2018
Réponses (2)
Michaelscheinfeild
le 13 Mai 2018
ycbcrmap = rgb2ycbcr(rgbmap);
meany=mean2(ych);
to be cont
Michaelscheinfeild
le 13 Mai 2018
0 votes
ycbcrmap = rgb2ycbcr(rgbmap); meany=mean2(ych);
% this generates the binary image xbin=(r+g+b)/3 >meany
Catégories
En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!