photo

Wanbin Song

MathWorks

Last seen: 거의 3년 전 2015년부터 활동

Followers: 0   Following: 0

메시지

Application Engineer @ MathWorks

통계

All
MATLAB Answers

0 질문
8 답변

File Exchange

5 파일

Cody

0 문제
4 답안

순위
2,039
of 298,572

평판
32

참여
0 질문
8 답변

답변 채택
0.00%

획득한 표
6

순위
1,942 of 20,619

평판
937

평균 평점
4.90

참여
5 파일

다운로드 수
40

ALL TIME 다운로드 수
8340

순위
60,677
of 161,704

참여
0 문제
4 답안

점수
50

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 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

배지 보기

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...

5년 초과 전 | 2

| 수락됨

답변 있음
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)...

대략 9년 전 | 0

| 수락됨

답변 있음
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...

9년 초과 전 | 3

답변 있음
How can I remove integers after the decimal points
You can use floor function which rounds toward negative infinity. A = floor(A);

9년 초과 전 | 0

| 수락됨

답변 있음
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 ...

9년 초과 전 | 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('~...

9년 초과 전 | 1

| 수락됨

답변 있음
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 ...

9년 초과 전 | 0

| 수락됨

답변 있음
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...

거의 10년 전 | 0