1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

java tests: added tests for calcHist, calcBackProject, Mat.size() method renamed

This commit is contained in:
Kirill Kornyakov
2011-07-19 11:44:30 +00:00
parent e715894ffb
commit 1fc895ff42
4 changed files with 226 additions and 23 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ public class Mat {
}
//javadoc:Mat::size()
public Size Size() {
public Size size() {
if(nativeObj == 0) return new Size();
return new Size(nSize(nativeObj));
}