作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
上下文:这与 "How to build a custom opencv.js with opencv_contrib ?" 有关在一般意义上。
这个问题是一个非常具体的变体:我想使用 accumulateWeighted
来自 imgproc
带有 OpenCV.js 的模块
到目前为止,我的尝试涉及了解事物的位置,因此我可以尝试稍微调整 emscripten 设置。据我了解,我需要使用的大部分文件都在:
opencv/modules/js/src
opencv/platforms/js
opencv_js.config.py
中看到此部分:
imgproc = {'': ['Canny', 'GaussianBlur', 'Laplacian', 'HoughLines', 'HoughLinesP', 'HoughCircles', 'Scharr','Sobel', \
'adaptiveThreshold','approxPolyDP','arcLength','bilateralFilter','blur','boundingRect','boxFilter',\
'calcBackProject','calcHist','circle','compareHist','connectedComponents','connectedComponentsWithStats', \
'contourArea', 'convexHull', 'convexityDefects', 'cornerHarris','cornerMinEigenVal','createCLAHE', \
'createLineSegmentDetector','cvtColor','demosaicing','dilate', 'distanceTransform','distanceTransformWithLabels', \
'drawContours','ellipse','ellipse2Poly','equalizeHist','erode', 'filter2D', 'findContours','fitEllipse', \
'fitLine', 'floodFill','getAffineTransform', 'getPerspectiveTransform', 'getRotationMatrix2D', 'getStructuringElement', \
'goodFeaturesToTrack','grabCut','initUndistortRectifyMap', 'integral','integral2', 'isContourConvex', 'line', \
'matchShapes', 'matchTemplate','medianBlur', 'minAreaRect', 'minEnclosingCircle', 'moments', 'morphologyEx', \
'pointPolygonTest', 'putText','pyrDown','pyrUp','rectangle','remap', 'resize','sepFilter2D','threshold', \
'undistort','warpAffine','warpPerspective','warpPolar','watershed', \
'fillPoly', 'fillConvexPoly'],
'CLAHE': ['apply', 'collectGarbage', 'getClipLimit', 'getTilesGridSize', 'setClipLimit', 'setTilesGridSize']}
我可以简单地添加
accumulateWeighted
到列表中,但是我觉得这也应该调整
bindings.cpp
/
core_bindings.cpp
适本地。当我获得 emscripten 的经验时,这就是一些困惑所在。
// C++: void accumulateWeighted(InputArray src, InputOutputArray dst, double alpha, InputArray mask=noArray() )
void accumulateWeighted_wrapper(const cv::Mat& src, const cv::Mat& dst, double alpha, cv::Mat& mask) {
return cv::accumulateWeighted(src, dst, alpha, mask);
}
void accumulateWeighted_wrapper_1(const cv::Mat& src, const cv::Mat& dst, double alpha) {
return cv::accumulateWeighted(src, dst, alpha);
}
// ...
function("accumulateWeighted", select_overload<void(const cv::Mat&, const cv::Mat&, double , cv::Mat&)>(&Wrappers::accumulateWeighted_wrapper));
function("accumulateWeighted", select_overload<void(const cv::Mat&, const cv::Mat&, double)>(&Wrappers::accumulateWeighted_wrapper_1));
到 bindings.cpp
cv.accumulateWeighted
,但我收到一个错误:
cv.accumulateWeighted(src, dst, 0.001)
opencv.js:9 Uncaught 6587800
___resumeException @ opencv.js:9
(anonymous) @ 02086862:0x1621d4
(anonymous) @ 02086862:0x1c1f8
dynCall_viid @ 02086862:0x365dc
dynCall_viiid @ 02086862:0x37296
Module.dynCall_viiid @ opencv.js:9
dynCall_viiid_532 @ VM1966:4
accumulateWeighted @ VM3269:10
proto.<computed> @ opencv.js:9
(anonymous) @ VM5257:1
我不是 100% 确定我做错了什么。这是一个片段,其中包含指向已编译脚本的链接:
function onOpenCvReady(){
cv.then(test);
}
function test(cv){
console.log("cv",cv.getBuildInformation());
src = cv.Mat.ones(3,3, cv.CV_8UC1);
dst = cv.Mat.ones(3,3, cv.CV_8UC1);
mask = cv.Mat.zeros(3,3, cv.CV_8UC1);
console.log("dst before", dst.data);
// throws error
try{
cv.accumulateWeighted(src, dst, 0.001, mask);
}catch(err){
console.warn("error running accumulateWeighted")
console.warn(err.stack)
}
console.log("dst after", dst);
}
<script async src="https://lifesine.eu/so/opencv_js_ubuntu/opencv.js" onload="onOpenCvReady();" type="text/javascript"></script>
accumulateWeighted_wrapper
中有错字。和
accumulateWeighted_wrapper_1
功能,但是我仍然遇到一个非常相似的错误,这使我相信绑定(bind)代码中还缺少其他内容。
accumulateWeighted
的正确方法是什么支持 OpenCV.js 吗?
最佳答案
对于这个问题的范围,一种解决方法是不修改 OpenCV.js 并重新编译,以在 JS 中实现功能。该函数大致有两个部分(和一个陷阱):
cv.lerp = function(lerpFromMat, lerpToMat, lerpResult, amount){
// TODO: args safety check (including constraining amount)
if (lerpToMat.cols === 0) {
lerpFromMat.copyTo(lerpResult);
} else if (lerpFromMat.cols === 0) {
lerpToMat.copyTo(lerpResult);
} else {
cv.addWeighted(lerpFromMat, amount, lerpToMat, 1.0 - amount, 0.0, lerpResult);
}
}
// super simplified alias, skipping mask for now
cv.accumulateWeighted = function(newMat, accumulatorMat, alpha){
p5cv.lerp(accumulatorMat, newMat, accumulatorMat, alpha);
}
我仍然期待另一个通用解决方案:通过 emscripten 将新的 c++ 函数添加到 OpenCV.js 的过程分解(无论是累积加权还是其他)
关于javascript - 如何向 OpenCV.js 添加 `accumulateWeighted` 支持?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63889719/
我是一名优秀的程序员,十分优秀!