Risposto
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); ...

oltre 5 anni fa | 0

| accettato

Domanda


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?

oltre 5 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 5 anni fa | 3 risposte | 0

3

risposte

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 1 risposta | 1

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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.

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 6 anni fa | 2 risposte | 0

2

risposte

Domanda


draw a line parallel to x-axis
How to draw line parallel to x-axis at a point (y = 1) and also find the area above that line.

oltre 6 anni fa | 1 risposta | 0

1

risposta

Carica altro