Community Profile

photo

Satadru Mukherjee


Last seen: 5 meses hace Con actividad desde 2019

Followers: 0   Following: 0

Estadísticas

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

Ver insignias

Feeds

Ver por

Respondida
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 :-)

casi 3 años hace | 0

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

Resuelto


Create an 8-color version of an image
This problem was inspired by a tweet I saw from @MATLAB regarding <http://www.mathworks.com/matlabcentral/fileexchange/37816-the...

alrededor de 3 años hace

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

casi 4 años hace | 0

Pregunta


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

casi 4 años hace | 0 respuestas | 0

0

respuestas

Resuelto


Converting binary to decimals
Convert binary to decimals. Example: 010111 = 23. 110000 = 48.

alrededor de 4 años hace

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

alrededor de 4 años hace | 0

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

alrededor de 4 años hace | 0

Enviada


K-means clustering without using built-in function
k mean algorithm without using built in functions in MATLAB

alrededor de 4 años hace | 4 descargas |

Resuelto


Prime Letters = Removing
Given a string, remove all the letters which in ASCII Code are prime numbers. For Example: s1 = 'Determine which array e...

más de 4 años hace

Resuelto


Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...

más de 4 años hace

Resuelto


Is this is a Tic Tac Toe X Win?
For the game of <https://en.wikipedia.org/wiki/Tic-tac-toe Tic Tac Toe> we will be storing the state of the game in a matrix M. ...

más de 4 años hace

Resuelto


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

más de 4 años hace

Resuelto


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

más de 4 años hace

Resuelto


Crop an Image
A grayscale image is represented as a matrix in MATLAB. Each matrix element represents a pixel in the image. An element value re...

más de 4 años hace

Resuelto


Phoneword Translator
Given an alphanumeric telephone number (Ex. 1-800-COLLECT), return the purely numeric phone number as a vector. This problem use...

más de 4 años hace

Resuelto


Simple polynomial evaluation
Compute the value of a polynomial of degree n with all coefficients '1', at value x. n is always n>=0. p(x)=1+x+x^2+...+x^n...

más de 4 años hace

Resuelto


Polynomial Multiplication
Multiply two polynomial equation.Given polynomial coefficients a and b.

más de 4 años hace

Resuelto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

más de 4 años hace

Resuelto


Longest Divisor Run
Given the vector a, find the longest run of consecutive numbers that can be evenly divided by the same number d where d > 1. ...

más de 4 años hace

Resuelto


7 segment LED display
Given a whole number, output how many segments would be lit up to display it on a 7 segment LED display (see Wikipedia: <http://...

más de 4 años hace

Resuelto


Bubble sort
Write your own bubble sort function ( <https://en.wikipedia.org/wiki/Bubble_sort>) to sort all elements in x in ascending order....

más de 4 años hace

Resuelto


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

más de 4 años hace

Resuelto


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

más de 4 años hace

Resuelto


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

más de 4 años hace

Cargar más