Skip to content

Commit 21a87b7

Browse files
committed
provide access to optical flow mat
1 parent 0fa983e commit 21a87b7

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

resources/build.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,12 @@ source.repository=https://github.com/atduskgreg/OpenCVPro
149149
# This is used to compare different versions of the same library, and check if
150150
# an update is available.
151151

152-
library.version=14
152+
library.version=15
153153

154154

155155
# The version as the user will see it.
156156

157-
library.prettyVersion=0.5.3
157+
library.prettyVersion=0.5.4
158158

159159

160160
library.copyright=(c) 2013

src/gab/opencv/Flow.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ public int height(){
3939
public boolean hasFlow(){
4040
return hasFlow;
4141
}
42+
43+
public Mat getFlowMat(){
44+
return flow;
45+
}
4246

4347
public void calculateOpticalFlow(Mat m) {
4448
int flags = runningFlags;

0 commit comments

Comments
 (0)