Fix contours example in README

`#findContours` needs to be called, not just referenced.
This commit is contained in:
Jeff Long 2016-01-07 11:09:05 -06:00
parent d45e74a0aa
commit 79aeeffb87

View File

@ -206,7 +206,7 @@ functions for accessing, computing with, and altering the contours contained in
See [relevant source code](src/Contours.cc) and [examples](examples/)
```javascript
var contours = im.findContours;
var contours = im.findContours();
// Count of contours in the Contours object
contours.size();