photo

Qu Cao

MathWorks

Last seen: 4일 전 2016년부터 활동

Followers: 3   Following: 0

I'm a Computer Vision Engineer at MathWorks and a Mechanical Engineer by education. DISCLAIMER: Any advice or opinions posted here are my own, and in no way reflect that of MathWorks.

통계

MATLAB Answers

0 질문
75 답변

순위
525
of 300,364

평판
150

참여
0 질문
75 답변

답변 채택
0.00%

획득한 표
20

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,407

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 4
  • Knowledgeable Level 3
  • 3 Month Streak
  • Revival Level 3
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
(Feature Request)How can I use the 'Simulation 3D Fisheye Camera' block to simulate a fisheye model that matches a known distortion table (FOV = 210°)?
Custom fisheye camera models are currently not supported in Computer Vision Toolbox. We will consider supporting this feature in...

4일 전 | 0

답변 있음
Reprojected points not matching the checkerboard image
The problem stems from an incorrect rotationVector assignment in estimateMultiCameraParameters. To fix the issue, please change ...

5일 전 | 0

| 수락됨

답변 있음
Will there be an update for the Matlab implementation of ORB-SLAM 2?
Since R2023b, you can use monovslam to perform visual SLAM with a monocular camera.

4개월 전 | 0

답변 있음
In stereocalibration, is the relationship between the 'R and T output as PoseCamera2' and the actual camera position the same, or does the sign of x in T reverse?
Sorry for the confusion. We will update our documenation to be more specific about the meaning of PoseCamera2. PoseCamera2 is t...

1년 초과 전 | 0

| 수락됨

답변 있음
detectSIFTFeatures only working for uint8
Use im2double: I = imread('cameraman.tif'); points = detectSIFTFeatures(im2double(I))

1년 초과 전 | 1

답변 있음
estworldpose giving different answers on each run.
estworldpose is a RANSAC-based method. You may want to set the random seed before running the function to get persistent results...

대략 2년 전 | 0

| 수락됨

답변 있음
Replacing vision.GeometericTransformEstimator call
https://www.mathworks.com/matlabcentral/answers/521519-what-function-replaced-vision-geometrictransformestimator

2년 초과 전 | 0

답변 있음
I have two camera parameters from stereoParams. Which one should I choose for Stereo Visual SLAM application? Or do I just get their mean values?
Usually, the focal length of the two cameras are the same. You can use either one.

2년 초과 전 | 0

답변 있음
Defining Feature detection area.
You can specify the ROI that you want to extract features from.

2년 초과 전 | 0

| 수락됨

답변 있음
unit of translation result from estrelpose function
As the documentation of estrelpose says, the function calculates the camera location up to an unknow scale. This is becuase you...

거의 3년 전 | 0

| 수락됨

답변 있음
Difficulties in obtaining good results with the ORB-SLAM2 algorithm in MATLAB.
Thank you for posting the question. In general, tuning the hyperparameters for a visual SLAM system can be hard and requires a...

거의 3년 전 | 1

| 수락됨

답변 있음
vSLAM: vSLAM algorithm is very sensitive to hyperparameters Issue?
You find the nature of the SLAM problem. Yes, the visual SLAM system is sensitive to hyperprameters which usually need to be tun...

거의 3년 전 | 0

| 수락됨

답변 있음
How to construct stereoParameters with intrinsic and extrinsic matrix?
poseCamera2 essentially transforms camera 2 to camer 1. If you have “the transaltion and rotation from camera1 to camera 2”, (le...

거의 3년 전 | 1

답변 있음
Object 3D world coordinates from multiple images
You will need a stereo camera to give you the actual dimension of 3-D objects. Alternatively,if you know the size of an object...

대략 3년 전 | 0

답변 있음
creating a bag of features for new image set for monocular SLAM
The bag-of-features data may not work for the KITTI dataset because it was trained using a small amount of image data. You may w...

대략 3년 전 | 1

| 수락됨

답변 있음
The Premultiply Convention in Geometric Transformations does not support C/C++ code generation?
Thank you for reporting this. There is a bug in the documentation. All the geometric transformation objects with the premultiply...

대략 3년 전 | 0

| 수락됨

답변 있음
How to use reconstructScene with a disparity map from file, without calling rectifyStereoImages ?
You can use the reprojectionMatrix output from rectifyStereoImages to do the reconstruction. Otherwise, you need to save the ste...

대략 3년 전 | 0

| 수락됨

답변 있음
Match the coordinate systems of "triangulate" and "reconstructScene" with "disparitySGM"
The point cloud generated from reconstructScene is in the rectified camera 1 coordinate. Starting in R2022a, you can use the ad...

대략 3년 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 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...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 2

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
Creating a depth map from the disparity map function
You can use reconstructScene for your workflow.

3년 초과 전 | 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...

3년 초과 전 | 0

| 수락됨

답변 있음
how to get texture extraction using LBP features in MATLAB?
You can use the extractLBPFeatures function.

거의 4년 전 | 0

답변 있음
About error of helperVisualizeMotionAndStructureStereo
In helperVisualizeMotionAndStructureStereo.m, please note the following code in retrievePlottedData which discards xyzPoints out...

거의 4년 전 | 2

답변 있음
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. ...

대략 4년 전 | 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...

대략 4년 전 | 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.

대략 4년 전 | 1

답변 있음
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, ...

대략 4년 전 | 0

| 수락됨

더 보기