Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
1b38d1e6
Commit
1b38d1e6
authored
Jul 19, 2013
by
Roman Donchenko
Committed by
OpenCV Buildbot
Jul 19, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1150 from janstarzy:spelling
parents
28f27554
9bf21674
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
28 additions
and
28 deletions
+28
-28
Mat.cpp
modules/java/generator/src/cpp/Mat.cpp
+0
-0
core+MatOfByte.java
modules/java/generator/src/java/core+MatOfByte.java
+2
-2
core+MatOfDMatch.java
modules/java/generator/src/java/core+MatOfDMatch.java
+2
-2
core+MatOfDouble.java
modules/java/generator/src/java/core+MatOfDouble.java
+2
-2
core+MatOfFloat.java
modules/java/generator/src/java/core+MatOfFloat.java
+2
-2
core+MatOfFloat4.java
modules/java/generator/src/java/core+MatOfFloat4.java
+2
-2
core+MatOfFloat6.java
modules/java/generator/src/java/core+MatOfFloat6.java
+2
-2
core+MatOfInt.java
modules/java/generator/src/java/core+MatOfInt.java
+2
-2
core+MatOfInt4.java
modules/java/generator/src/java/core+MatOfInt4.java
+2
-2
core+MatOfKeyPoint.java
modules/java/generator/src/java/core+MatOfKeyPoint.java
+2
-2
core+MatOfPoint.java
modules/java/generator/src/java/core+MatOfPoint.java
+2
-2
core+MatOfPoint2f.java
modules/java/generator/src/java/core+MatOfPoint2f.java
+2
-2
core+MatOfPoint3.java
modules/java/generator/src/java/core+MatOfPoint3.java
+2
-2
core+MatOfPoint3f.java
modules/java/generator/src/java/core+MatOfPoint3f.java
+2
-2
core+MatOfRect.java
modules/java/generator/src/java/core+MatOfRect.java
+2
-2
No files found.
modules/java/generator/src/cpp/Mat.cpp
View file @
1b38d1e6
This diff is collapsed.
Click to expand it.
modules/java/generator/src/java/core+MatOfByte.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfByte extends Mat {
protected
MatOfByte
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfByte extends Mat {
public
MatOfByte
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfDMatch.java
View file @
1b38d1e6
...
...
@@ -17,7 +17,7 @@ public class MatOfDMatch extends Mat {
protected
MatOfDMatch
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat: "
+
toString
());
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat: "
+
toString
());
//FIXME: do we need release() here?
}
...
...
@@ -28,7 +28,7 @@ public class MatOfDMatch extends Mat {
public
MatOfDMatch
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat: "
+
toString
());
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat: "
+
toString
());
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfDouble.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfDouble extends Mat {
protected
MatOfDouble
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfDouble extends Mat {
public
MatOfDouble
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfFloat.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfFloat extends Mat {
protected
MatOfFloat
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfFloat extends Mat {
public
MatOfFloat
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfFloat4.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfFloat4 extends Mat {
protected
MatOfFloat4
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfFloat4 extends Mat {
public
MatOfFloat4
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfFloat6.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfFloat6 extends Mat {
protected
MatOfFloat6
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfFloat6 extends Mat {
public
MatOfFloat6
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfInt.java
View file @
1b38d1e6
...
...
@@ -16,7 +16,7 @@ public class MatOfInt extends Mat {
protected
MatOfInt
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -27,7 +27,7 @@ public class MatOfInt extends Mat {
public
MatOfInt
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfInt4.java
View file @
1b38d1e6
...
...
@@ -16,7 +16,7 @@ public class MatOfInt4 extends Mat {
protected
MatOfInt4
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -27,7 +27,7 @@ public class MatOfInt4 extends Mat {
public
MatOfInt4
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfKeyPoint.java
View file @
1b38d1e6
...
...
@@ -17,7 +17,7 @@ public class MatOfKeyPoint extends Mat {
protected
MatOfKeyPoint
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -28,7 +28,7 @@ public class MatOfKeyPoint extends Mat {
public
MatOfKeyPoint
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfPoint.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfPoint extends Mat {
protected
MatOfPoint
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfPoint extends Mat {
public
MatOfPoint
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfPoint2f.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfPoint2f extends Mat {
protected
MatOfPoint2f
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfPoint2f extends Mat {
public
MatOfPoint2f
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfPoint3.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfPoint3 extends Mat {
protected
MatOfPoint3
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfPoint3 extends Mat {
public
MatOfPoint3
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfPoint3f.java
View file @
1b38d1e6
...
...
@@ -15,7 +15,7 @@ public class MatOfPoint3f extends Mat {
protected
MatOfPoint3f
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -26,7 +26,7 @@ public class MatOfPoint3f extends Mat {
public
MatOfPoint3f
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
modules/java/generator/src/java/core+MatOfRect.java
View file @
1b38d1e6
...
...
@@ -16,7 +16,7 @@ public class MatOfRect extends Mat {
protected
MatOfRect
(
long
addr
)
{
super
(
addr
);
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
@@ -27,7 +27,7 @@ public class MatOfRect extends Mat {
public
MatOfRect
(
Mat
m
)
{
super
(
m
,
Range
.
all
());
if
(
!
empty
()
&&
checkVector
(
_channels
,
_depth
)
<
0
)
throw
new
IllegalArgumentException
(
"Incomatible Mat"
);
throw
new
IllegalArgumentException
(
"Incom
p
atible Mat"
);
//FIXME: do we need release() here?
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment