photo

Satadru Mukherjee


Last seen: 2 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

1 个提问
10 个回答

File Exchange

1 文件

Cody

0 个问题
95 个答案

排名
21,258
of 299,947

声誉
2

贡献数
1 个提问
10 个回答

回答接受率
0.0%

收到投票数
1

排名
11,971 of 20,848

声誉
36

平均
0.00

贡献数
1 文件

下载次数
3

ALL TIME 下载次数
361

排名
7,208
of 166,679

贡献数
0 个问题
95 个答案

评分
961

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • First Answer
  • Personal Best Downloads Level 1
  • First Submission
  • Solver

查看徽章

Feeds

排序方式:

已回答
How can I confirm that a template image is found in the primary image using cross correlation?
Please refer this video -- Pattern Finding in Image using Cross Correlation | MATLAB Happy Learning :-)

4 years 前 | 0

已回答
Similar image grouping in dataset
You can refer this video-- Color Image Segregation using ResNet-18 & K-Means Clustering Hope this will be helpful.

4 years 前 | 0

已回答
mean shift algorithm ,matlab code
Here is the complete code with explanation-- https://youtu.be/tk7802wmpS4 I hope the answer will be helpful for you . Happy M...

4 years 前 | 0

已回答
clustering Algorithm's Matlab codes
You can see following video for DBSCAN Clustering Algorithm: https://youtu.be/Ia0a4B2m9HQ

4 years 前 | 0

已回答
How do I implement Linear regression with leave-one-out cross validation in MATLAB?
Demo code of Implementation linear regression with leave-one-out cross validation in MATLAB Note: I have tried to avoid the inb...

5 years 前 | 1

已回答
Hough transform doesn't detect some lines
Simple Code , no need Hough-- clc clear all close all warning off x=imbinarize(rgb2gray(imread('Capture.JPG'))); imshow(x)...

5 years 前 | 0

已回答
Help In Separation of objects in an image into different images
Check this code: clc clear all close all x=imbinarize(rgb2gray(imread('Capture.JPG'))); imshow(x); [L n]=bwlabel(x); fo...

5 years 前 | 0

提问


Is the code for binary logistic regression is correct using glmfit? I am new in this domain , so confused a bit
%% clc clear all close all warning off %% g=[2.7810836 2.550537003 0 1.465489372 2.362125076 0 3.396561688 4.400293529 0...

5 years 前 | 0 个回答 | 0

0

个回答

已回答
covariance and correlation
Execute the below code , in th cova variable covariance & in the corr variable , correlation result will be stored... clc clea...

5 years 前 | 0

已回答
k nearest neighbor regression function
clc clear all close all x=input('Enter the x coordinates:'); y=input('Enter the y coordinates:'); z=[]; a=input('Enter the...

5 years 前 | 0