First time here? Check out the FAQ!

Ask Your Question
0

How to get every pixel's value of R, G and B from the Mat of type CV_8UC3 in Java?

asked Oct 10 '17

ImGladYouCame gravatar image

I used Mat :: get (row, col, data) method to get each pixel, but how to get each pixel R, G, B value?

Preview: (hide)

1 answer

Sort by » oldest newest most voted
4

answered Oct 10 '17

mfisher gravatar image

updated Oct 11 '17

Mat m;
byte[] b = new byte[3];
m.get(y, x, b);
//Assuming BGR Format
// blue = b[0]
// green = b[1]
// red = b[2]

Don't do this in a loop. To access many pixels at a time, use a larger buffer.

Preview: (hide)

Comments

Thanks,I have solved my problem.

ImGladYouCame gravatar imageImGladYouCame (Oct 11 '17)edit

Question Tools

1 follower

Stats

Asked: Oct 10 '17

Seen: 338 times

Last updated: Oct 11 '17