opencv.js gabor wavelet
hiii, anyone has idea to implement gabor wavelet with opencv.js
thanks
hiii, anyone has idea to implement gabor wavelet with opencv.js
thanks
you can see, what's implemented here
so it HAS filter2D(), and you only have to write a replacement for this
thanks, try to convert opencv/modules/imgproc/src/gabor.cpp to javascript but found internal function of opencv line 75 Mat kernel(ymax - ymin + 1, xmax - xmin + 1, ktype); line 89 kernel.at<float>(ymax - y, xmax - x) = (float)v;
suggestion.. it is posibble just add getGaborKernel to opencv/modules/js/src/embindgen.py and compile it again :) line 106 imgproc = {'': ['getGaborKernel','Canny', 'GaussianBlur', 'Laplacian' ...
thanks again
Asked: 2018-07-08 23:24:06 -0600
Seen: 313 times
Last updated: Jul 11 '18
Thumbprint Gabor Filtering, Orientation Map and Normalization
I am with difficulties in building the openCV.js in MAC OS
Extract Fingerprint from normal camera image
Why doesn't opencv.js include CvKNearest?
How to create a mask in OpenCV.js?
how to include opencv.js and opencv.wasm into html?
OpenCV.js facial landmarks + human skeleton tracking
Opencv.js usecases and limitations
as a rule of thumb: if it is not in the tutorials -- chances are low, that it was wrapped into opencv.js at all.
you'd have to use getGaborKernel() and filter2D() to build a gabor filter.
anyone know how easy to develop getGaborKernel() and filter2D() ourself.. any roadmap for opencv.js development?