Ask Your Question
2

MatOfInt, MatOfFloat, etc...

asked 2013-01-07 20:24:20 -0600

matt.hammer gravatar image

Are these Java convenience classes just for 1 X N matrices?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
3

answered 2013-01-08 06:15:37 -0600

MatOfInt, MatOfFloat is classes that are inherited from Mat and has 1 channel of defined type and size 1xN. It is analog of std::vector<int>, std::vector<double>, etc in C++ code. This classes have been created for wrapping OpenCV C++ functions, that operate with std::vector<type>.

edit flag offensive delete link more

Comments

Makes sense now - thank you

matt.hammer gravatar imagematt.hammer ( 2013-01-08 08:36:22 -0600 )edit

Question Tools

Stats

Asked: 2013-01-07 20:24:20 -0600

Seen: 2,070 times

Last updated: Jan 08 '13