photo

Anton Semechko


Last seen: 12 days 前 自 2012 起处于活动状态

Followers: 2   Following: 0

消息

Biomedical/R&D engineer with 10+ years of academic + industry experience and avid user of Matlab for 15+ years. Mainly interested in bio-signal processing, medical and microscopy image processing, computational anatomy, and machine learning.

Spoken Languages:
English
Pronouns:
He/him

统计学

All
MATLAB Answers

5 个提问
111 个回答

File Exchange

10 文件

Cody

0 个问题
5 个答案

排名
222
of 300,270

声誉
437

贡献数
5 个提问
111 个回答

回答接受率
60.0%

收到投票数
68

排名
583 of 20,903

声誉
3,064

平均
4.90

贡献数
10 文件

下载次数
27

ALL TIME 下载次数
26081

排名
50,409
of 167,902

贡献数
0 个问题
5 个答案

评分
70

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • 3 Month Streak
  • Commenter
  • Solver
  • Explorer
  • Personal Best Downloads Level 3
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • Thankful Level 1

查看徽章

Feeds

排序方式:

已提交


Exact minimum bounding spheres and circles
Compute exact and approximate minimum bounding spheres/circles of 3D/2D point sets

12 days 前 | 2 次下载 |

4.9 / 5
Thumbnail

提问


How to disable or delete cameratoolbar context menu
Hello Matlab community! Does anyone here know how to disable or delete the cameratoolbar context menu while maintaining the pro...

10 months 前 | 2 个回答 | 1

2

个回答

提问


Where is the search bar on the Matlab File Exchange website?
This is more of a recommendation to the MathWorks website developers rather than a quesiton. I don't use File Exchange (FEX) of...

1 year 前 | 1 个回答 | 0

1

个回答

已提交


Detect outliers in multivariate datasets
Compute robust estimates of mean and covariance, and flag potential multivariate outliers

4 years 前 | 1 次下载 |

5.0 / 5
Thumbnail

已提交


IsoCut
Extract/visualize level set(s) of a scalar field defined at the vertices of a surface mesh

4 years 前 | 3 次下载 |

5.0 / 5
Thumbnail

已提交


Particle tracking on a sphere
Fast particle tracking and ray-triangle intersection queries on triangular meshes of a unit sphere

4 years 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


Fast fuzzy c-means image segmentation
Segment N-dimensional grayscale images into c classes using efficient c-means or fuzzy c-means clustering algorithm

4 years 前 | 6 次下载 |

4.8 / 5
Thumbnail

已提交


Exact histogram equalization and specification
Perform exact histogram specification or equalization of 2D grayscale images

4 years 前 | 3 次下载 |

4.8 / 5
Thumbnail

已提交


DecimatePoly
Simplify a 2D closed contour/polygon to within user-defined boundary offset tolerance

4 years 前 | 1 次下载 |

5.0 / 5
Thumbnail

已提交


Suite of functions to perform uniform sampling of a sphere
Toolbox for generating uniform sampling patterns and decompositions of a unit sphere

4 years 前 | 7 次下载 |

4.8 / 5
Thumbnail

已提交


Rigid body parameters of closed surface meshes
Fast computation of exact rigid body parameters of closed triangular surface meshes using divergence theorem

4 years 前 | 1 次下载 |

5.0 / 5
Thumbnail

提问


none of the axes interactions are working in axes embedded in a UIFigure panel
Problem: The interactions of an axes object embeded in a UIFigure panel are not working. The interactions I am trying to add to ...

4 years 前 | 0 个回答 | 0

0

个回答

已回答
PCA on high dimensional data
A 13952736-by-104 data matrix (with observations along rows and variables along columns) will take up 13952736*104*8/2^30 =...

7 years 前 | 0

| 已接受

已回答
Fitting scattered data to multiple cosine functions
Below is an example where I use brute-force search to find an optimal set of sinusoid parameters that best fit an unorganized da...

7 years 前 | 2

| 已接受

已回答
imshow() not working
Use syntax: imshow(im,[]) when im has non-integer format. Or just do this: im = imread('/MATLAB Drive/My Project/ima...

7 years 前 | 3

| 已接受

已回答
distance of points to points calculation
Use <https://www.mathworks.com/help/stats/knnsearch.html#namevaluepairarguments 'knnsearch' function>. For example: [idxA,D_...

7 years 前 | 0

| 已接受

已回答
How is the number of bins chosen with the auto binning algorithm in histcounts?
'histcounts' first estimates width of the histogram bins using 'scottsrule': rawBinWidth = 3.5*std(data)/(numel(data)^(1/3...

7 years 前 | 1

| 已接受

已回答
Barycentric Coordinates of a spherical triangle
This can be done in four steps: 1) Compute linear transformation (T) that maps triangle A to its counterpart B on the sphere....

7 years 前 | 0

已回答
How do I use a .lut file (or the equivalent in MATLAB) to reference pixels in a grayscale image and assign them new values for pseudocoloring based on the LUT?
There is a Matlab function that maps gray values to RGB values using custom made look-up-tables. Its called 'ind2rgb': <https://...

7 years 前 | 0

| 已接受

已回答
Transformation of the complex plan: Conformal Mapping
Modified code ('conformal_map_demo') is attached below. In principle, this piece of code should should allow you to visualize an...

7 years 前 | 3

已回答
How to sum each column element of one matrix with all column elements of another matrix?
Do kron([a b;c d],[1;1]) + kron([1;1],[i j;k l]) Here is an example using symbolic expressions syms a b c d i j k l...

7 years 前 | 0

| 已接受

已回答
Generating sets of non repeating random numbers
Here is an example: S=reshape(randperm(40),[],4); All elements in S will be in the range [1 40] and unique. From this it...

7 years 前 | 1

已回答
3D plane plotting restricted by 3 points
Equation of a plane is determined uniquely by any 3 (noncollinear) points lying on the plane. Based on your question, it sounds ...

7 years 前 | 0

| 已接受

已回答
Could anyone help me with extracting similar features( to be used as corresponding points)in two images which need to be registered together?
Hey, Poupack, here is <https://drive.google.com/open?id=1SRXAVFkbHPfQ9jLjsFL-fkfWz2KrKJAO link> to a function ('pairwise_his...

7 years 前 | 0

| 已接受

已回答
How can I extract the slices of a 3D matrix in x-direction from a 3D matrix?
Suppose you have G, which is a Y-by-X-by-Z 3D array, then i-th xy slice: G_yx=G(:,:,i); % Y-by-X array i-th xz slice...

7 years 前 | 2

| 已接受

已回答
Multivariate nonlinear regression model fitting
If the function you are trying to fit is linear in terms of model parameters, you can estimate these parameters using linear lea...

7 years 前 | 1

| 已接受

已回答
How to export 3D spheres (3D plot) generated in Matlab to ANSYS or Abaqus. ?
The builtin 'ellipsoid' and 'sphere' functions produce bad quality meshes (in terms of element shapes and connectivity of the ve...

7 years 前 | 1

已回答
Is there a way to open music and play it?
Yeah, there is a way. Here is an example: % Get sample audio file from the web [y,Fs]=webread('http://www.worldnationala...

7 years 前 | 1

| 已接受

已回答
How do I compute the maxpool of a image? Let us say stride of 2,2 on a mxn matrix?
Here is an example: % Sample image im=imread('cameraman.tif'); % sample image % 4 pixels comprising non-overlappi...

7 years 前 | 0

已回答
How do I plot a plane that has points of different values?
Actually, based on the sample picture you provided, you have a total of 17x21 grid points, and total number of cells in the g...

7 years 前 | 2

| 已接受

加载更多