maximum pixel intensity of image
Show older comments
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..
Accepted Answer
More Answers (4)
Matt J
on 2 Oct 2012
[maxval,idx]=max(image(:));
[row,col]=ind2sub(size(image), idx);
Lalit Patil
on 2 Oct 2012
0 votes
Lalit Patil
on 3 Oct 2012
0 votes
5 Comments
Lalit Patil
on 3 Oct 2012
Image Analyst
on 3 Oct 2012
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
on 29 Oct 2015
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
on 29 Oct 2015
Try improfile().
Nonu 007
on 1 Nov 2015
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
on 10 Oct 2018
0 votes
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 Comment
Categories
Find more on Region and Image Properties in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!