photo

cui,xingxing


Last seen: Today 2017 年からアクティブ

Followers: 1   Following: 3

Algorithm Engineer- I received my B.E in Mechanical Engineering from Yangtze University, China in 2013, and M.Sc. in Mechanical Engineering from Guangxi University of Science and Technology, China in 2016. After graduation, I have been working in Shenzhen, a city in the south of China. I mainly engaged in working with algorithm development,and my main interests are image processing algorithms,computer vision,machine learning,automated driving simulation,3D vision algorithms,deep learning,C/C++ code generation,graph theory,360-degree panorama,human activity recognition,scientific graphics/computing, etc. Additionally,I usually use some git,cmake,docker,linux(ubuntu),shell,RoadRunner and Matlab/Simulink, Python, C/C++ language tools. Note:15+ years of continuous experience using MATLAB.

Programming Languages:
Python, C++, C, MATLAB
Spoken Languages:
Chinese
Pronouns:
He/him

統計

All
  • 6 Month Streak
  • Knowledgeable Level 2
  • Creator
  • Introduction to MATLAB Master
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 3
  • Thankful Level 5
  • Commenter
  • Promoter
  • Community Group Solver
  • Solver
  • GitHub Submissions Level 3

バッジを表示

Feeds

表示方法

回答済み
How to read a raw image URL directly from a GitHub public repository via the imread function?
Incorrect use of html-wrapped address. I use raw data to read now, the correct URL address to read is as follows: imgPath = "h...

7日 前 | 0

| 採用済み

質問


How to read a raw image URL directly from a GitHub public repository via the imread function?
As far as I know, imread built-in function supports to read the image address file of a URL directly, but for a certain URL imag...

7日 前 | 1 件の回答 | 0

1

回答

質問


(bug)MATLAB Support Package for Apple iOS Sensors could't work?
When I install "MATLAB Support Package for Apple iOS Sensors" successfully,then input in command line: m = mobiledev Failure t...

23日 前 | 0 件の回答 | 0

0

回答

回答済み
Plotting Timetable in Matlab
Hi, @Anders Vigen Here I give a Example: tt = datetime+years(1:10); % 比如从现在时间开始,连续十年时间点 y = rand(10,1); TT = timetable(tt',y...

24日 前 | 0

回答済み
How do I generate a Hammer projection from my PNG image file using Mapping Toolbox 2.6 (R2007b)?
latlim = [-90 90]; lonlim = [-180 180]; rasterSize = [180 360]; R = georefcells(latlim,lonlim,rasterSize,'ColumnsStartFrom','...

約2ヶ月 前 | 0

回答済み
How to use phase difference information to extract effective components of signal?
Hi,@大路 郑 Yes, you can separate the signal components from the noise using the fact that the signal components in the two lines ...

約2ヶ月 前 | 0

回答済み
Solve long matrices equation
From your screenshot formulas, you should first prioritize the formulas Manipulation and Simplification, and then try to solve t...

3ヶ月 前 | 0

回答済み
How to apply individual color to each bar on a bar chart plot
Example: %To call the fuction we have the following codenin a separate file % Metric values for the main model Cleveland_ac...

3ヶ月 前 | 1

| 採用済み

回答済み
Getting some unknown characters like blank squares in my MATLAB files .
Hi,@Saaketh Ramachandra Puligadda Save the file that was displayed correctly in R2022b as a new file, note that the type is "ut...

3ヶ月 前 | 0

回答済み
Column to matix In matlab
Example: data = 1:500; matrix = reshape(data,50,10)'; get the size of matrix size(matrix) preview matrix head(matrix) ---...

4ヶ月 前 | 0

| 採用済み

回答済み
make function without input.
Hi,@진회 In fact, you don't need to do 2-statge passing in and out of multiple variables for your model output in simulink, you c...

4ヶ月 前 | 0

回答済み
Fit gaussian to X-Y data (one X column, multiple Y column), for each Y column from an excel file.
HI,@Titli You can export a function in the cftool APP to facilitate subsequent simultaneous manipulation of multiple variables....

4ヶ月 前 | 1

回答済み
How do I fix this error?
You should make sure that the array dimensions in the arithmetic are consistent, for example I changed your psdtot variable to a...

4ヶ月 前 | 0

| 採用済み

回答済み
in 2024a version of MATLAB, I can't see my training and validation accuracy in training plot progress.
Hi,@ZEBA As far as I can guess you should be using trainnet to train the network, which is indeed slightly different from the p...

4ヶ月 前 | 0

| 採用済み

回答済み
MATLAB 2024a official support package can't install, online documentation not working?
After contacting mathworks technical support, I have tried the following steps: Click on the following link to download the bo...

4ヶ月 前 | 0

| 採用済み

質問


MATLAB 2024a official support package can't install, online documentation not working?
I am current using the windows desktop version of matlab R2024a and am experiencing the following problems: 1. can't log in to ...

4ヶ月 前 | 2 件の回答 | 0

2

回答

回答済み
how to find max and min values in range for ecg
You can perhaps use wavelet analysis for the detection of local extrema in ECG signals. You can refer to the following example. ...

4ヶ月 前 | 0

| 採用済み

回答済み
Saving concatenated/ stitched elongated image file in high resolution
Hi,@Abdul Hannan Have not try with imwrite? If it's a custom plot image,you can try use exportgraphics build-in function to so...

5ヶ月 前 | 1

回答済み
How to install "mpm" command?
Good job,now MPM support operating system: Linux | Windows | macOS Note: The "mountedDocImage/bin/arch" in the offline ISO docu...

5ヶ月 前 | 0

回答済み
How to get daily max, min, and mean from a timetable?
@Sanley Guerrier Your 5th input parameter should put all the variables on one positional parameter. or just leave it out and de...

5ヶ月 前 | 0

回答済み
Behaviour change of `isequal`
Hi,@tommsch As far as I understand, in both R2018b and R2020a version results return logic 1, not different as you said. R2018...

5ヶ月 前 | 1

回答済み
Why does my code generated from MATLAB Coder fail to compile because of missing function definitions for "omp_init_nest_lock" and "omp_destroy_nest_lock"?
If you use the CMake tool to compile, then it should link to the OpenMP library. Add the following example to CMakeLists.txt. F...

5ヶ月 前 | 0

回答済み
Does the selfattentionLayer also perform softmax and scaling?
Hi,@Chih Please check out the details of the code I wrote here link. -------------------------Off-topic interlude, 2024-------...

7ヶ月 前 | 0

回答済み
How does selfAttentionLayer work,implementing validation with brief code?
Here I have provided myself a simple code workflow with only 2 dimensions, "CT", to illustrate how each step works. Note that e...

7ヶ月 前 | 1

| 採用済み

質問


How does selfAttentionLayer work,implementing validation with brief code?
How does selfAttentionLayer work in detail every step of the way, can you simply reproduce its working process based on the pape...

7ヶ月 前 | 1 件の回答 | 0

1

回答

回答済み
Where are some officially supported default download data paths/Folders?
official matlab example program data userpath deep learning neural network weights,support packages/installation matlabshared...

7ヶ月 前 | 0

| 採用済み

質問


Where are some officially supported default download data paths/Folders?
With the continuous updating and iteration of the Matlab desktop version, many official example programs need to download some d...

7ヶ月 前 | 1 件の回答 | 0

1

回答

回答済み
selfAttentionLayer can't process sequence-to-label problem?
In terms of the output feature map dimensions, there is a time "T" dimension that has to be eliminated in order to match the out...

7ヶ月 前 | 0

| 採用済み

回答済み
How to import segment anything model into matlab?
Hi,@Layla Bitar In Matlab R2024a, have introduce Image Processing Toolbox Model for Segment Anything Model,no dependent on Pyth...

7ヶ月 前 | 0

回答済み
converting categorical array to cell array
@Fangjun Jiang update new workflow. a=categorical({'R_','G_','B_'}); b=string(a); c=replace(b,'_','-'); d=categorical(c) BT...

7ヶ月 前 | 1

さらに読み込む