Fix off-by-one error in README

This commit is contained in:
flyashi 2018-07-30 14:33:08 -04:00 committed by GitHub
parent cfc96ba0af
commit 51408f930b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ var mat = new cv.Matrix.Eye(4,4); // Create identity matrix
mat.get(0,0) // 1
mat.row(0) // [1,0,0,0]
mat.col(4) // [0,0,0,1]
mat.col(3) // [0,0,0,1]
```
##### Save