You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
General purpose contour extraction routine generator. This library has a really horrible interface, but it is pretty flexible. It is mostly useful as an internal component, and should not be used generally unless you know what you are doing.
3
4
4
-
**WORK IN PROGRESS, CHECK BACK LATER**
5
+
As an example of a nicer interface built using this module, take a look at [surface-nets](https://github.com/mikolalysenko/surface-nets).
6
+
7
+
# Example/documentation
8
+
9
+
```javascript
10
+
var generateContour =require("ndarray-extract-contour")
11
+
12
+
var getContour =generateContour({
13
+
order: [1,0], //Order of array iteration
14
+
arrayArguments:2, //Take two arrays as input
15
+
scalarArguments:1, //Take one extra scalar argument
0 commit comments