photo

Mohammad Haghighat


University of Miami

Last seen: plus de 4 ans il y a Actif depuis 2015

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

1 Question
13 Réponses

File Exchange

8 Fichiers

Cody

4 Problèmes
432 Solutions

RANG
731
of 300 392

RÉPUTATION
107

CONTRIBUTIONS
1 Question
13 Réponses

ACCEPTATION DE VOS RÉPONSES
100.0%

VOTES REÇUS
39

RANG
270 of 20 934

RÉPUTATION
5 516

CLASSEMENT MOYEN
4.80

CONTRIBUTIONS
8 Fichiers

TÉLÉCHARGEMENTS
20

ALL TIME TÉLÉCHARGEMENTS
48247

RANG
459
of 168 373

CONTRIBUTIONS
4 Problèmes
432 Solutions

SCORE
3 870

NOMBRE DE BADGES
6

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Triathlon Participant
  • Scavenger Finisher
  • Thankful Level 1
  • Revival Level 1
  • Quiz Master
  • Promoter
  • Personal Best Downloads Level 4
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • Knowledgeable Level 2

Afficher les badges

Feeds

Afficher par

Réponse apportée
PCA to reduce dimensionality of feature vector
Please check the Matlab's pca command: <https://www.mathworks.com/help/stats/pca.html>

presque 8 ans il y a | 1

Réponse apportée
what are the features/measures for no reference quality analysis of fused images
There are several non-reference metrics for feature fusion. The widely used ones are the Piella [1], Petrovic [2] and the Featur...

environ 9 ans il y a | 4

| A accepté

Réponse apportée
How do I compare overlap of each blob in first frame with every blob in the next frame and then save the corresponding pair?
One solution can be by creating a mask using the first frame and applying it to the second frame. In order to create the mas...

environ 9 ans il y a | 3

| A accepté

Réponse apportée
Given a matrix A = [2 5 7; 4 1 8], write a for loop that will replace all the even numbers with 0.
This can be a solution using for loops: [m,n] = size(A); for i = 1:m for j = 1:n if mod(A(i,j),2) =...

environ 9 ans il y a | 2

| A accepté

Réponse apportée
How to Change the brightness of an image by using loops and no loops
You don't need the if statement for reducing the values to be in the range [1, 255]. The pixel type uint8 cannot go higher than ...

environ 9 ans il y a | 4

| A accepté

Réponse apportée
Need help putting multiple values in Legends
First of all, you only need one "hold on". You don't need to repeat it after each plot. You can add the legend *after your lo...

environ 9 ans il y a | 5

| A accepté

Réponse apportée
How could I change or open the data in Workspace?
As far as I know, you can only change the name in the Workspace. However, if you double click on the data, it opens it in the Ed...

environ 9 ans il y a | 3

Réponse apportée
Matlab unable to start
Have you tried reinstalling it? Some necessary files might have been deleted for some reason.

environ 9 ans il y a | 3

Réponse apportée
How to perform canny edge detection to detect the head portion and to count the people who are entering into a room?
You said you have already done the background subtraction, and now, you have the foreground image (FG). What you need to do is...

environ 9 ans il y a | 3

Réponse apportée
When I am running findpeak it is giving me the following error? Why is there this error? How to modify the code to fix it?
For some reason, you have an odd number of parameters for _uddpvparse_. You'd better put a break point at "findpeaks>parse_inpu...

environ 9 ans il y a | 3

| A accepté

Réponse apportée
Undefined function or variable 'x'.
You cannot just "run the function" with no input arguments. It has to be called from another function and the X and Y must be gi...

environ 9 ans il y a | 3

Question


How to get sum of columns even if the matrix is a row vector?
I'd like to get the sum of columns in a matrix, but when the matrix has only one row, the SUM function gives the sum of all elem...

environ 9 ans il y a | 1 réponse | 3

1

réponse

Réponse apportée
what features are to be extracted from an image for brain tumor detection?
Statistical features usually work well. You can try Gray Level Co-occurrence Matrix (GLCM), Histogram of Oriented Gradient (HOG)...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
How to map certain temperature range into 0-255 gray scale image (thermogram) ?? Please advice...
temperature = 28.4 + intensity*(36-28.4)/255

plus de 10 ans il y a | 1

| A accepté