photo

Wanbin Song

MathWorks

Last seen: environ 4 ans il y a Actif depuis 2015

Followers: 0   Following: 0

Message

Application Engineer @ MathWorks

Statistiques

All
MATLAB Answers

0 Questions
8 Réponses

File Exchange

5 Fichiers

Cody

0 Problèmes
4 Solutions

RANG
2 083
of 301 947

RÉPUTATION
32

CONTRIBUTIONS
0 Questions
8 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
6

RANG
1 914 of 21 470

RÉPUTATION
968

CLASSEMENT MOYEN
4.90

CONTRIBUTIONS
5 Fichiers

TÉLÉCHARGEMENTS
6

ALL TIME TÉLÉCHARGEMENTS
8652

RANG
66 867
of 177 627

CONTRIBUTIONS
0 Problèmes
4 Solutions

SCORE
50

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 4
  • Editor's Pick
  • GitHub Submissions Level 3
  • First Review
  • First Submission
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Calculating frame rate per second for object detection
You can add some of code as belows: Declare some variables before while loop as below: fps = 0; avgfps = []; Include below t...

plus de 6 ans il y a | 2

| A accepté

Réponse apportée
How to apply Gaussian filter on images in MATLAB?
You can use imgaussfilt function for 2-D gaussian filtering as below: I = imread('mypic.jpg'); Iblur = imgaussfilt(I, 1)...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Using a variable in an input prompt
Input argument of 'input' function should be a text. Your code shows that your input arguments of 'input' function consists o...

plus de 10 ans il y a | 3

Réponse apportée
How can I remove integers after the decimal points
You can use floor function which rounds toward negative infinity. A = floor(A);

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
i have 20 images saved in a folder in computer now i have to convert to gray images at the time. how to convert rgb to gray ?
Supposed that your images are named as image1.png, image2.png, ... image20.png. You can do it as follows: for i = 1:20 ...

plus de 10 ans il y a | 0

Réponse apportée
How to convert the following jpg file to matlab.fig file
As my understanding of your question, it is pretty simple as below: img = imread('~~.jpg'); imshow(img); savefig('~...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
I want to sum the loop result which the result is indicates the total of selected input
You can code it as belows: disp('Please vote for your candidates'); a=1; b=2; c=3; d=4; result = []; for y=1:5 ...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Undefined function 'selectStrongest' for input arguments of type 'uint8'.
Try to change the work folder to simple directory such as C:\work. It happens when there is a function or matrix files in the...

presque 11 ans il y a | 0