![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/6383459_1580563764976.jpeg)
Wanbin Song
MathWorks
Followers: 0 Following: 0
Application Engineer @ MathWorks
Feeds
제출됨
Social Distancing Monitoring System
AI-enabled social distancing detection tool that can detect if people are keeping a safe distance from each other
4년 초과 전 | 다운로드 수: 2 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/e30f99e0-8353-4234-850f-eb105d8d5de8/a5315971-6e1c-415a-b415-c1f82e2e9ed8/images/screenshot.png)
제출됨
COVID19 Face Mask Detection using Deep Learning
The entire workflow of developing deep learning model for detecting face mask.
4년 초과 전 | 다운로드 수: 5 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/8e75f4ba-0c46-4b18-8e68-9495bd07013d/e24e7344-c4c9-4ed9-9eb3-bd79e6e20814/images/screenshot.png)
제출됨
Machine Learning Lithium-Ion Battery Capacity Estimation
Machine learning based Lithium-Ion battery capacity estimation using multi-Channel charging Profiles
대략 5년 전 | 다운로드 수: 19 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/af72b217-588c-4847-ac0f-7f4d1561f32c/ce2b3564-0233-4f3b-b81c-5919080d1bc4/images/screenshot.png)
제출됨
Fire Detection for CCTV surveillance system using YOLOv2
Fire Detection for CCTV surveillance system using YOLOv2
대략 5년 전 | 다운로드 수: 9 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/2db2067b-85c5-44f8-8922-cc652a055fdc/f26aeb95-d6bc-4811-9a4d-f7a6ad01e111/images/screenshot.png)
답변 있음
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...
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)...
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
| 수락됨
문제를 풀었습니다
Determine if input is a perfect number
A <http://en.wikipedia.org/wiki/Perfect_number/ perfect number> occurs whent the sum of all divisors of a positive integer, exce...
9년 초과 전
답변 있음
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...
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);
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 ...
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('~...
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 ...
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
| 수락됨
문제를 풀었습니다
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
9년 초과 전
문제를 풀었습니다
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
9년 초과 전
문제를 풀었습니다
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
9년 초과 전
답변 있음
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...
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...
9년 초과 전 | 0