Beantwortet
PCA in Matlab reduce dimensionality
[coeff, score] = pca(ingr); requiredResult = score(:,1:2); or if you want to change coeff to 13 x 2 matrix, you'll have to us...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
How to train ann with multiple input data
% Create a network (i have used feed-forward backpropagation) net = newff(TrainFeatures, Trainlabels, num_of_hidden_Neurons); ...

etwa 7 Jahre vor | 0

| akzeptiert

Frage


what does the L-shaped bracket mean?
N1 = N2 = 4 xi = ith pixel of 4 x 4 block What does the 'L - shaped bracket' mean? How to write code for alpha and beta?

etwa 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


get grayImage from bitImage
% Compute mean in 4-by-4 blocks kernel = ones(4); meanImage = conv2(double(grayImage), kernel, 'same') / numel(kernel); % Com...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


write statement without using for loop
how to write this statement without using for loop

etwa 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


convert image to bitmap map image without using for loop
Partition an image into 4 × 4 pixel blocks and compute average for the block N1 = N2 = 4 xi = ith pixel now replace the...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


create a matrix with numbers from vector
i have a vector as v = [ 1 1 1 2 2 2 3 3 4] i wanted to create a new matrix as M = [ 1 1 1 0 0 0 0 0 0; 0 0 0 1 1 1 0 0 ...

etwa 7 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


How to get the intersecting coordinates of a binary image?
is there any method to get the coordinate points of the intersecting positions from this binary image and plot it in a graph...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to add limit condition to existing code
How to add lim h ->0 condition to the below code. How is tril, toeplitz in code related to the above equation? How to edit ...

etwa 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Segment yellow and white colour lines
How to get the get only the yellow and white lines from an image.

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


get 2 set of random coordinates
How to plot as above randomly with two colors I have now given xy = [2.5 4.5; 3.5 4.5; 4.5 4.5; 4.5 2.5; 3.5 3.5]; ...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to show Movement from point A to point B
How to show the movement of between 2 points using any method

etwa 7 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


select a region from an image satisfying a condition
How to select a region from an orientation image satisfying the following condition <</matlabcentral/answers/uploaded_files/1...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to change the xmarkings of graph
i have plotted a graph, i want its xlim to be from 3 to 7, mine is showing 1 to 5. When i do xlim([3 7]) only the last 3 values ...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to get the (x,y) coordinate values of points touching bounding box
I have a binary object How can i get the (x,y) co-ordinate value of the points touching the bounding box.

fast 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


how to get string and numbers separately using csvread
How to get string and numbers separately from csv file using csvread. I have a csv file with "A-Z" numerical columns and 100 row...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


can the value of rand('seed') be saved
I set random seed value as 0 rand('seed',0); then i do genetic algorithm using ga Is there any way i can save the val...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


display newline string from cell array
<</matlabcentral/answers/uploaded_files/108771/Untitled.png>> I have a cell array of characters. In that i have a newline cha...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


key generation and inversing
i generate a random key using the below line Key = randperm(n*m); please can someone explain what does the below two l...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Image watermarking using LSB
Below are few line from LSB image watermarking. Please can someone explain why we divide by 32 in the first code line. Why do ...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to find angles of a triangle
If i know the values of (xi,yi), (xj,yj) and (xu,yu) how to find the angle thetai and thetaj <</matlabcentral/answers/uplo...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to write equation a for X and Y
How to write equation a for X and Y using the below image (how to obtain X and Y) <</matlabcentral/answers/uploaded_files/107...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


segment the characters in the image
How to segment the image into line, word, and character.

etwa 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


using bwareafilt to get area in a range
i used bw2 = bwareafilt(bw, [40 50]); to get regions having area in the range 40-50. but more than one region is co...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to get the mask of the region between 2 lines
having (x1,y1) and (x2,y2) coordinate value, how to get the mask region between the 2 lines

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Find the area between 2 plotted regions in a graph
How to find the area lying between the two region

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to save the filled region to as an image
structBoundaries = bwboundaries(binaryImage); xy = structBoundaries{i}; fill(xy(:,2),xy(:,1),'w'); how to save the...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to get the 1st and the 3rd boundary objects in the binary image
i segmented an image and got a binary image bw when i do the below line, i get only 1 numberOfblobs [labeledImage, numbe...

etwa 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


save image seen in imagesc
when i display input image using "imagesc", it shows in a different format compared to "imshow" imagesc(Img,[0 255]); color...

etwa 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


get the intersection points in the graph
if i draw a line at y = 1, how to get the point at which the line will intersect the graph (marked in blue line in the image)...

etwa 8 Jahre vor | 2 Antworten | 0

2

Antworten

Mehr laden