フィルターのクリア

Detecting "brown spots" on leafs

4 ビュー (過去 30 日間)
Elvin
Elvin 2013 年 12 月 20 日
コメント済み: swathi 2017 年 3 月 2 日

Can you show me will I be able to detect the "brown spots" in this image? Thanks

回答 (3 件)

Image Analyst
Image Analyst 2013 年 12 月 20 日
I'd first define a mean green color. Then convert to lab color space and calculate a delta E image. Then threshold the delta E to find out where the delta E is more than some certain amount. Those will be the non-green pixels. See my delta E demo at http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 and adapt it. I do this kind of thing all the time and yours is not that hard. Note, you cannot use automatic thresholding despite what some novices at image processing may suggest because you need to find all amounts of brown from 0% to 100%.
  13 件のコメント
Image Analyst
Image Analyst 2013 年 12 月 21 日
deltaE is a 2D array that has a color difference value it it, just like any other 2D numerical array. Look at deltaE in the variable inspector to see the values or use imshow like Walter showed. If you don't know what the variable inspector is, then see this.
Image Analyst
Image Analyst 2013 年 12 月 21 日
You need to do an element by element squaring:
deltaE = sqrt(deltaL.^2 + deltaA.^2 + deltaB.^2);

サインインしてコメントする。


sai rama krishna gondela
sai rama krishna gondela 2015 年 3 月 25 日
can any one write complete program for brown spots or tthe above program is itself correct
  1 件のコメント
Image Analyst
Image Analyst 2015 年 3 月 25 日
Probably. And I think you're one of those people.

サインインしてコメントする。


Kameshwar Pramanik
Kameshwar Pramanik 2015 年 11 月 27 日
can you tell me how to correct following line i am getting error on this. That is File "RB - 1.jpg" does not exist.
for Code is: RBImage = imread('RB - 1.jpg');
  2 件のコメント
Image Analyst
Image Analyst 2015 年 11 月 27 日
Make sure the filename is spelled correctly and the file is in the current folder or on the search path.
swathi
swathi 2017 年 3 月 2 日
Hello.. Even I am looking for similar sort of code, on the mango images. finding spot pixels. I tried the same code, but its not wworking, Could somebody please help.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAgriculture についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by