how can i extract only this green region ?
3 ビュー (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/166039/image.jpeg)
I want to extract those region which has the only green channels value. is it possible after converting in gray scale i can extract green channel region ? I already tried the following code but it not works.
Im = imread('1.jpg');
Im=imrotate(Im,-90);
figure,imshow(Im);
Im = imresize(Im, [512 512]);
diff_im = Im(:,:,2);
figure,imshow(diff_im);
0 件のコメント
回答 (1 件)
Image Analyst
2017 年 7 月 15 日
Try the Color Thresholder App on the Apps tab,
or see the attached video that tracks green in a video.
4 件のコメント
Image Analyst
2017 年 7 月 15 日
Then the Color Thresholder app should work for you. Use it and export your code. If it still doesn't work then write back.
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!