Answered
How does the "Dense Reconstruction" in the "Structure From Motion From Multiple Views" MATLAB example work?
For SfM the approach used assumes an ordered sequence of views. The tracks are computed from pairwise point correspondence. The ...

6 years ago | 0

| accepted

Answered
axis labels using geoscatter
Try changing the axis label size and font through GeographicAxes Properties by using geoaxes function. Latitude and Longitude ...

6 years ago | 0

Answered
Calculate different correlation coefficients
In the second figure the data is non-linearly correlated and are of non-parametric distribution. In such cases rank correlation ...

6 years ago | 0

Answered
Help newbie with timer functions.
temporalCount() function gives you the elapsed time in milli seconds in each state. Using this the execution of commands can b...

6 years ago | 0

Answered
Monocular Vision Odometry - without an additional sensor
The issue might be with the intrinsics of the camera used. Try to re-calibrate the camera. You can use the MATLAB Camera Calibra...

6 years ago | 0

Answered
The smallest number of Simulink simulation steps
Yes, the simulation step size varies for fixed and variable step solvers. If the solver is set to ‘auto’, then the simulation st...

6 years ago | 0

Answered
How to increase the resolution of Point cloud in 2D?
Functions like delaunayTriangulation and scatteredInterpolant can be used to interpolate the data and get a Denser point cloud....

6 years ago | 0

| accepted

Answered
How can I find the axes of inertia of a 3D point cloud
Perform the Principal Component Analysis(PCA) on the point cloud. Each column of the coefficient matrix that the PCA returned co...

6 years ago | 0

Answered
Perpetual license service end date
Contact your sales representative to get detailed understanding about your license terms. If you don't know who your sales repr...

6 years ago | 0

Answered
Why there is no ADA Boost in the Machine Learning App?
The ClassificationLearner App is continiously improved. As of now the ADA Boost is not available.

6 years ago | 0

Answered
Reading inertial measurement unit (IMU) data in real-time using C# dll
Hi, You can use the ROS, a communication interface for data acquisition from the IMU sensor. First develop a package for loggi...

6 years ago | 0

Answered
How to arrange input for CNN ?
Hi, Categorical is the last step you do before passing it to the trainNetwork function. Try creating the categorical array of t...

6 years ago | 0

Answered
Can the number of Predictors be different for Train and Test data?
No, You can not have different number of predictors for the train and test data. The model you have trained would require all th...

6 years ago | 0

| accepted

Answered
Is it possible to use MATLABs MPC toolbox to implement Real-time control on a small scale Pilot Plant
Yes, you can use MPC toolbox for real time control. After designing a plant in Simulink using any of the MPC blocks, you can gen...

6 years ago | 0

Answered
Opinion on 3D point cloud from disparity map?
Hi, The scene has very little texture. Try adding texture which will aid in better 3D recontruction. Also try to recalibrate ...

6 years ago | 0

Answered
How to combine features
To get the combined feature vector use combinedVector = [feature( : ), features2 ( : ), featureVector( : )];

6 years ago | 1

| accepted

Answered
MATLAB quiver3 order of direction arguments
The quiver3 function with syntax quiver3(x,y,z,u,v,w) plots a three dimensional quiver plot. It takes the first three arguments ...

6 years ago | 0

Answered
How to create a smooth heatmap for 1D ?
Hi Sreenivas, You are trying to generate the heatmap using only 8 points. Try to interpolate the data using the interp1 functio...

6 years ago | 1

| accepted