
Qu Cao
Statistics
0 Questions
57 Answers
RANK
712
of 260 254
REPUTATION
84
CONTRIBUTIONS
0 Questions
57 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
10
RANK
of 17 892
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 111 756
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
MATLAB Simulate 3D Camera: why is there no focal length (world units) attribute in the sensor model?
Please take a look at this page: https://www.mathworks.com/help/vision/ug/camera-calibration.html#bu0ni74 If you know the size...
28 dagar ago | 0
How to port SLAM algorithm to embedded platform?
Unfortunately, as of R2022a the visual SLAM pipeline doesn't support code generation yet. We're actively working on this suppopr...
ungefär en månad ago | 1
| accepted
how to get the relative camera pose to another camera pose?
Note that the geometric transformation convention used in the Computer Vision Toolbox (CVT) is different from the one used in th...
ungefär en månad ago | 0
| accepted
How to get 3D world coordinates from 2D image coordinates?
You should use the rectified stereo images. The disparityMap computed from disparitySGM should have the same size as your stereo...
4 månader ago | 0
Creating a depth map from the disparity map function
You can use reconstructScene for your workflow.
4 månader ago | 0
Unable to use functions from the Computer Vision Toolbox in Simulink MATLAB function block
A workaround is to declare the function as an extrinsic function so that it will be essentially executed in MATLAB: https://www...
5 månader ago | 0
| accepted
how to get texture extraction using LBP features in MATLAB?
You can use the extractLBPFeatures function.
7 månader ago | 0
About error of helperVisualizeMotionAndStructureStereo
In helperVisualizeMotionAndStructureStereo.m, please note the following code in retrievePlottedData which discards xyzPoints out...
7 månader ago | 0
About SLAM initial Pose data
The initial pose data is provided by the dataset. It's used to convert the 3-D reconstruction into the world coordinate system. ...
8 månader ago | 0
About "slam" on my camera device
The example shows how to run stereo visual SLAM using recorded data. It doesn't support "online" visual SLAM yet, meaning that y...
9 månader ago | 0
Is Unreal Engine of the Automated Driving Toolbox available on Ubuntu?
As of R2021a, only Windows is supported. See Unreal Engine Simulation Environment Requirements and Limitations.
10 månader ago | 0
why we use Unreal engine when there is a 3D visualization available in Automated driving toolbox?
It's not just used for visualization. With Unreal, you can configure prebuilt scenes, place and move vehicles within the scene, ...
10 månader ago | 0
| accepted
About running a stereo camera calibrator
In general, you can use any type of stereo camera and calibrate its intrinsic parameters using the Stereo Camera Calibrator. You...
12 månader ago | 0
How to obtain optimal path between start and goal pose using pathPlannerRRT() and plan()?
Please set the random seed at the beginning to get consistent results across different runs: https://www.mathworks.com/help/mat...
12 månader ago | 0
| accepted
Does vehicleCostmap this type of map only support pathPlannerRRT object to plan a path? Can I use another algorithm to plan a path?
You can create an occupancyMap object from a vehicleCostmap object using the following syntax: map = occupancyMap(p,resolution)...
ungefär ett år ago | 0
Defining a ROI for feature extraction rather than rectangle
Unfortunately, rectangle is the only type of ROI supported. As a workaround, you can define multiple ROIs in your image to cover...
ungefär ett år ago | 1
Monocular Visual Simultaneous Localization and Mapping Error: Dot indexing is not supported for variables of this type.
The example has been updated over the past few releases. For 20b version, please check the following documentation: https://www...
ungefär ett år ago | 0
| accepted
How can I store the feature descriptors for all 3D points found in Structure from Motion?
You can use imageviewset to store the feature points associated with each view and the connections between the views. You can al...
ungefär ett år ago | 0
How to use "triangulateMultiview" to reconstruct the same world coordinate point under multiple different views?
triangulateMultiview requires both camera poses and intrinsic parameters inputs to compute the 3-D world positions corresponding...
ungefär ett år ago | 0
| accepted
imageviewset() not returning an imageviewset object
imageviewset is introduced in R2020a. If you are not able to upgrade to 20a, you can use viewSet as a workaround.
mer än ett år ago | 0
How to ensure that the number of matches between 2 images is equal to the number given?
You can set 'MatchThreshold' to 100 and 'MaxRatio' to 1.
mer än ett år ago | 0
| accepted
Undefined function 'estimateGeomerticTransform' for input arguments of type 'SURFPoints'.
There is a typo in your code, estimateGeomerticTransform should be estimateGeometricTransform.
mer än ett år ago | 0
How do I find 3D coordinates from stereo picture pair?
You can use reconstructScene function to compute the 3-D world points from a disparity map. Then, you can query the 3-D coordina...
nästan 2 år ago | 0
RRT navigation toolbox and automated driving toolbox also costmap from driving scenario
1) plannerRRT in Navigation Toolbox is a generic motion planner where you can define the state space. pathPlannerRRT in Automate...
nästan 2 år ago | 0
helperTrackLocalMap error with Monocular SLAM
Answer pasted from comments: Please try tunning the parameters to see if it helps improve the robustness: In helperIsKeyFrame,...
nästan 2 år ago | 0
Why is the pointsToWorld back-projection inverted?
You may need to convert the camera world pose to extrinsics using cameraPoseToExtrinsics: [worldOri,worldLoc] = estimateWorld...
nästan 2 år ago | 3
| accepted
rectangle instead of square for camera calibration
Unfortunately, this function does not support rectangle patterns.
nästan 2 år ago | 0
How to calculate fisheye intrinsics?
You can use undistortFisheyeImage function to produce a "virtual perspective" camera intrinsics, which is the format you need. S...
ungefär 2 år ago | 1
| accepted
How can I find a diameter of cylindrical 3D point cloud in MATLAB?
https://www.mathworks.com/help/vision/ref/pcfitcylinder.html
ungefär 2 år ago | 0
Function estimateWorldCameraPose() or extrinsics() for fisheyeParameters is missing. Is it possible to change these functions for fisheye?
fisheyeIntrinsics can't be used directly. Instead, you can use undistortFisheyeImage function to produce both undistorted image ...
ungefär 2 år ago | 2
| accepted