Update to 2.0.0 tree from current Fremantle build
[opencv] / interfaces / ch / chfhandmade / cvGetND.chf
diff --git a/interfaces/ch/chfhandmade/cvGetND.chf b/interfaces/ch/chfhandmade/cvGetND.chf
deleted file mode 100644 (file)
index f57b2e6..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <cv.h>
-#include <dlfcn.h>
-
-CvScalar cvGetND(const CvArr* arr, int* idx) {
-    void *fptr;
-    CvScalar retval, *temp;
-
-    fptr = dlsym(_Chcv_handle, "cvGetND_chdl");
-    if(fptr == NULL) {
-        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
-        return retval;
-    }
-    dlrunfun(fptr, &temp,cvGetND, arr, idx);
-    retval = *temp;
-    free(temp);
-    return retval;
-}