maximum pixel intensity of image
古いコメントを表示
My current project is based on CCD and LASER. i want to calculate maximum intensity of laser strip on ccd.. so please give me a code to find maximum intensity pixel and location of that pixel as row and column..
採用された回答
その他の回答 (4 件)
Matt J
2012 年 10 月 2 日
[maxval,idx]=max(image(:));
[row,col]=ind2sub(size(image), idx);
Lalit Patil
2012 年 10 月 3 日
0 投票
5 件のコメント
Lalit Patil
2012 年 10 月 3 日
Image Analyst
2012 年 10 月 3 日
Yes, taking the blue channel will give you the best contrast for a red laser. Of course that doesn't solve the location (centroid) problem.
Nonu 007
2015 年 10 月 29 日
Hey I am doing same analysis. But now i want a cross-section line of beam at highest intensity. Can you suggest me what to do for that... Please reply asap. thanks in advance.
Image Analyst
2015 年 10 月 29 日
Try improfile().
Nonu 007
2015 年 11 月 1 日
Hello Image Analyst. I am trying that too but I am not getting a single line of cross section in 2D at highest Peak. Here i am attaching a fig. May be from that you can help me.

I want a cross section line like this from the image at max intensity.
Shel
2018 年 10 月 10 日
0 投票
Hi, I am using max(I(:)) on my image but the error "Index exceeds matrix dimensions. " shows up ... do you know what the problem is?
1 件のコメント
カテゴリ
ヘルプ センター および File Exchange で Region and Image Properties についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!