We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Opencv compiler version 3.4, using opencvjs page error:
The text was updated successfully, but these errors were encountered:
Take a look on this file: https://github.com/opencv/opencv/blob/3.4.14/platforms/js/opencv_js.config.py
Sorry, something went wrong.
i think boxPoints function implemented as named rotatedRectPoints in OpenCV.js
boxPoints
rotatedRectPoints
you can see sample usage in https://docs.opencv.org/4.x/df/def/tutorial_js_meanshift.html
// apply camshift to get the new location [trackBox, trackWindow] = cv.CamShift(dst, trackWindow, termCrit); // Draw it on image let pts = cv.rotatedRectPoints(trackBox); cv.line(frame, pts[0], pts[1], [255, 0, 0, 255], 3); cv.line(frame, pts[1], pts[2], [255, 0, 0, 255], 3); cv.line(frame, pts[2], pts[3], [255, 0, 0, 255], 3); cv.line(frame, pts[3], pts[0], [255, 0, 0, 255], 3);
Successfully merging a pull request may close this issue.
Opencv compiler version 3.4, using opencvjs page error:
The text was updated successfully, but these errors were encountered: