photo

Manish M


Actif depuis 2019

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
12 Réponses

Cody

0 Problèmes
42 Solutions

RANG
2 736
of 300 365

RÉPUTATION
22

CONTRIBUTIONS
0 Questions
12 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
3

RANG
 of 20 933

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
12 941
of 168 262

CONTRIBUTIONS
0 Problèmes
42 Solutions

SCORE
440

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • Revival Level 2
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
How to run a deployed program on BeagleBoard Hardware (Ubuntu)
Hi Pierre Simulink generates a .elf file and stores it in the target's ~/ directory. So you can just create an SSH Connection t...

plus de 6 ans il y a | 0

Réponse apportée
I cannot get MATLAB to see my beaglebone black
Hi Kurt, I know this is a late reply but this might be useful for someone else. For MATLAB to detect your Beaglebone you've to ...

plus de 6 ans il y a | 0

Réponse apportée
Can I store information inside Beaglebone black hardware
In MATLAB Support Package there is a putFile() method which can be used to transfer files from your host to Beaglebone. or alter...

plus de 6 ans il y a | 0

Réponse apportée
Run simulink model on beaglebone black
The Embedded Coder Support Package for Beeaglebone Black is compatible with Debian 8.3 (not sure about the minor version but som...

plus de 6 ans il y a | 0

Réponse apportée
my question is i need to know if the BeagleBone blue is need a toolbox to run it in matlab simulink
Yes, it requires the Simulink Code Support Package for Beaglebone Blue.

plus de 6 ans il y a | 0

Réponse apportée
How to turn off autocomplete in a live script
Hi Frederick, Go to Home > Preferences (under Environment Section) > MATLAB > Keyboard > Under Live Editor and App Designer > S...

plus de 6 ans il y a | 2

| A accepté

Réponse apportée
Wireless network coding for source and receiver
Hi Sandunika, Visit this link TCP/IP Socket Communications in MATLAB. There is a server and client implementation written in MA...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to segment Gray image using autoamte thrsholding without manual threshold [based on image- image was dynamic ]?
Hi You can use Otsu's thresholding technique. It chooses a threshold that minimizes the intraclass variance of the thresholded ...

plus de 6 ans il y a | 0

Réponse apportée
converting lat,lon column vectors to corresponding grid vector (lon*lat)
lat_lon = lat*lon'; sz = size(lat_lon); lat_lon = reshape(lat_lon, [sz(1)*sz(2), 1]); size(lat_lon); %(35*33)x1 This gives...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Does MATLAB's disparity function (semiglobal) use the Birchfield-Tomasi pixel cost?
You are correct, it uses cv::stereosgbm which uses the Birchfield-Tomasi matching cost.

plus de 6 ans il y a | 0

Réponse apportée
Pixel's edge strength
Hi There is no such thing as a pixel's edge strength. You would just compare the pixel value with the threshold. If you are try...

plus de 6 ans il y a | 0

Réponse apportée
Image feature extraction calculation
Hi Image contrast: image_contrast = max(grayImage(:)) - min(grayImage(:)); Correlation Coefficient: It is calculated b/w two i...

plus de 6 ans il y a | 1

| A accepté