Hi! Whats is function Get2d and Set2d in java or the similar?
Some functions are similar in Java and C for example cvScalar in Java is Scalar, but cvGet2d not found in Java.
Asked: 2014-06-26 13:21:56 -0600
Seen: 569 times
Last updated: Jun 26 '14
CvGet2d an CvSet2d was basically an option to get and set values. They are now retrieved in C++ by using the .at<type>(x,y) operator on a matrix. I guess since Java interface is built based on that something similar must exist.