Wanbin Song
MathWorks
Followers: 0 Following: 0
Application Engineer @ MathWorks
Estadística
CLASIFICACIÓN
1.991
of 295.527
REPUTACIÓN
32
CONTRIBUCIONES
0 Preguntas
8 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
6
CLASIFICACIÓN
1.967 of 20.242
REPUTACIÓN
913
EVALUACIÓN MEDIA
4.90
CONTRIBUCIONES
5 Archivos
DESCARGAS
137
ALL TIME DESCARGAS
8098
CLASIFICACIÓN
57.817
of 154.057
CONTRIBUCIONES
0 Problemas
4 Soluciones
PUNTUACIÓN
50
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
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...
alrededor de 5 años hace | 2
| aceptada
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)...
casi 9 años hace | 0
| aceptada
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...
alrededor de 9 años hace | 3
How can I remove integers after the decimal points
You can use floor function which rounds toward negative infinity. A = floor(A);
alrededor de 9 años hace | 0
| aceptada
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 ...
alrededor de 9 años hace | 0
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('~...
alrededor de 9 años hace | 1
| aceptada
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 ...
alrededor de 9 años hace | 0
| aceptada
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...
más de 9 años hace | 0