How important it is to do camera calibration for ArUco? What if I dont calibrate the camera? What if I use calibration data from other camera? Do you need to recalibrate if camera focuses change? What is the practical way of doing calibration for consumer application?
How frequent do you need to do camera calibration for ArUco?
1.4k Views Asked by Syaiful Nizam Yahya At
1
There are 1 best solutions below
Related Questions in OPENCV
- segmentation fault: 11, extracting data in vector
- Disable OpenCL in OpenCV completely
- Python - Writing your own function with opencv giving an error
- Opengl Augmented Reality in Android from solvepnp
- OpenCv Multispectral Image openCV
- Displaying bitmap image on Android (OpenCV)
- Applying homography on non planar surface
- BackgroundSubtractor getBackgroundImage() function return empty Image
- How to choose good SURF feature keypoints?
- opencv python error: Assertion failed (size.width>0 && size.height>0)
- CIDetector to filter rectangle and get cropped image
- How to detect squares in video with OpenCV?
- Python OpenCV error: (-215) size.width>0 && size.height>0 in function imshow
- OpenCV algorithm of contours searching and creation of bounding rectagle
- OpenCV Opening/Closing shifts the positions of the pixels
Related Questions in ARUCO
- How can we confirm that the intrinsic matrix is correct?
- ArUco Camera Calibration function arguments type missmatch
- How to transform a 3D model for Augmented Reality application using OpenCV Viz and ARUCO
- How to initialize a 3D aruco board object points?
- Python opencv Aruco "No module named 'cv2.aruco'"
- OpenCV aruco, Z-axis doesn't draw properly
- OpenCV Aruco Markers are not recognized on industrial cameras
- OpenCV aruco marker detection not working
- Project center of camera to coordinates in charuco board
- Charuco board with opencv 4.7 in python
- Get angle between camera Z-axis and ArUco marker Z-axis
- OpenCV ArUco marker detection
- The rvec (rotation vector) is inaccurate when using Aruco and cv2.solvePnP to estimate the pose
- Per-pixel area estimation using aruco markers as reference
- Detect a custom ArUco marker ( latest version )
Related Questions in ANDROID-AUGMENTED-REALITY
- Android Artoolkit 3d model offset from marker
- How to create VR split screen using OpenSpace3d?
- How to implement a markerless augmented reality system for mobile devices (Android)
- ARToolKit 6: Image Tracking using FREAK
- Packaging ARCore Unity Projects for distribution
- Google ARCore Domain Model by Example
- How to use intents with unity google tango
- how to change background of the augmented_faces_java sample in ARCore?
- CommandInvokationFailure: Gradle build failed in unity
- Implementing Depth API for Collision Detection in Google ARCore Furniture App
- How to launch web AR on android from a QR code
- Video in Unity Asset is not embedded in the Android Build
- Augmented image anchor position changed frequently
- Filter by AR support on Google Play Developer Console?
- Is it okay to create an anchor for every object in sceneform?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Before answering your questions let me introduce some generic concepts related with camera calibration. A camera is a sensor that captures the 3D world and project it in a 2D image. This is a transformation from 3D to 2D performed by the camera. Following OpenCV doc is a good reference to understand how this process works and the camera parameters involved in the same. You can find detailed AruCo documentation in the following document.
In general, the camera model used by the main libraries is the pinhole model. In the simplified form of this model (without considering radial distortions) the camera transformation is represented using the following equation (from OpenCV docs):
The following image (from OpenCV doc) illustrates the whole projection process:
In summary:
Where:
Now, let's go through your questions one by one:
Camera calibration is important in ArUco (or any other AR library) because you need to know how the camera maps the 3D to 2D world so you can project your augmented objects on the physical world.
Camera calibration is the process of obtaining camera parameters: intrinsic and extrinsic parameters. First one are in general fixed and depend on the camera physical parameters unless you change some parameter as the focus for example. In such case you have to re-calculate them. Otherwise, if you are working with camera that has a fixed focal distance then you just have to calculate them once.
Second ones depend on the camera location/orientation in the world. Each time you move the camera the RT matrices change and you have to recalculate them. Here when libraries such as ArUco come handy because using markers you can obtain these values automatically.
In few words, If you don't calculate the camera you won't be able to project objects on the physical world on the exact location (which is essential for AR).
It won't work, this is similar as using an uncalibrated camera.
Yes, you have to recalculate the intrinsic parameters because the focal distance changes in this case.
What is the practical way of doing calibration for consumer application?
It depends on your application, but in general you have to provide some method for manual re-calibration. There're also method for automatic calibration using some 3D pattern.