답변 있음
Can GUI files share data?
Yes, You can do. Declare the variables which you need to plot as global. Then you just call the other file. There you can plot.

대략 11년 전 | 0

질문


How can I convert MATLAB Code to VHDL Code?
I have a MATLAB Code. Is it possible to convert into VHDL Code?

대략 11년 전 | 답변 수: 4 | 0

4

답변

답변 있음
How can i change image file format from .jpg to .tiff?
Use |imwrite| command to write images in the required format.

대략 11년 전 | 0

답변 있음
how can i implement edge detection ?
Refer <http://www.mathworks.in/help/images/ref/edge.html here>. For more details.

대략 11년 전 | 0

질문


How to find the center point in this plot?
This is my plot. How to find the center point available in this plot? <<http://img842.imageshack.us/img842/571/plotib.png>>...

대략 11년 전 | 답변 수: 2 | 0

2

답변

답변 있음
Problem with rgb2gray function ?
Check with your input image. It was gray image.

11년 초과 전 | 3

| 수락됨

답변 있음
How to display a histogram
Use |imhist(H)|

11년 초과 전 | 0

| 수락됨

답변 있음
How to create database to store values
for i = 1 : 100 % 100 is number of images A{i} = [f1 f2]; % make A as a cell end save('features.mat','A'); ...

11년 초과 전 | 1

| 수락됨

답변 있음
need help in to write a matlab script
n = 10; % assuming it to be 10 x = 0; for i = 1 : n x = ((1/i) + (1/(i+2)*(i+3))) + x; end

11년 초과 전 | 0

| 수락됨

답변 있음
How to read & display multiple images from a folder
Create a datastore by specifying the location of your image files. location = 'E:\New Folder\*.tif'; % folder in which y...

11년 초과 전 | 28

| 수락됨

질문


How to obtain this graph???
This is my input Image. <<http://imageshack.us/a/img404/8669/00111.png>> How to get this graph?? <<http://imageshack.us...

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


I have two index values, I want to draw a line
I have a binary image, I have two index values, I want to draw a line joining those two indices, The line has all the pixels wit...

11년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to find Concavity or Convexity part in an Image?
If this was my input Image, How to find that red dot position? Is there any procedures or algorithms?? <<http://i.stack.imgur...

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


How to crop an image automatically?
The following is my input Image. Here is there any possibility crop automatically that chromosome part? Because other parts are ...

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Regarding the watershed transform.
This is my input Image <https://picasaweb.google.com/117753342126991948821/November28201202#5815822646745704738 Input Image> ...

11년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to find the execute but don't display output syntax of a loop?
for i=1:10 for j=1:10 A(i,j)=i*j-j^2; end end Use semicolon at the end of the statements to suppres...

11년 초과 전 | 0

답변 있음
how to compute threshold
Use |graythresh| function. |Global image threshold using Otsu's method|

11년 초과 전 | 1

| 수락됨

답변 있음
How to wirte FFT code
Use |y = fft(x,n)| function. Here |x| is the function you specify, |n = 64.|

11년 초과 전 | 0

질문


Write data to spreadsheet.?
I have written some data to the spreadsheet using |xlswrite| function. But when i run the code next time I want to append the da...

11년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to sum up a matrix n-times?
I have a matrix A = [1 2 3 4; 5 6 7 8] How to sum up a matrix up to n times.?

11년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to create a 7 X 7 window?
I have an image with a size of 512X512. I want to create a 7X7 window to do some operations. But want to process all the pixels?...

11년 초과 전 | 답변 수: 3 | 0

3

답변

질문


How to get the Region of Interest using impoly?
How to use impoly function to get the ROI. From the following figure, How to show the ROI (i.e), the cut portion in the place o...

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


How to extract the ROI using impoly?
using impoly(); how to extract the Region of Interest alone?? Here Im getting Errors. grayImage = imread('pout.tif');...

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


Using multibandread to display images.
Using |multibandread| we can read several bands from an image. But display more than three bands how it can be??

11년 초과 전 | 답변 수: 0 | 0

0

답변

질문


How to color a binary image?
Suppose a binary image is considered, which consists of two colors. Is it possible to assign red color to the white portions in ...

11년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
vector matrix multiplication with increment
W = 4; A = [1 2 3 4 5]; n = numel(A); for i = 1 : n out(i) = [A(i)*(W+i)]; end

11년 초과 전 | 0

답변 있음
vector addition in a single row
w = 2; N = 10; % N value may be anything as the length u need.. for i = 1 : N out(i)=[w+i]; end

11년 초과 전 | 0

| 수락됨

답변 있음
how to plot sine and cosine waves in one graph ?
a = 10; t = 0 : 0.01 : 10; A = a*sin(t); subplot(121),plot(t,A); B = a*cos(t); subplot(122),plot(t,B);

11년 초과 전 | 0

질문


How to select a random value from a matrix?
How to select a random value from a matrix? A = [1 2 3 4 5 6 7 8 9 10]

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


How to extract the region of interest?
Considering an image, |imrect| function displays the ROI. Now I want to extract the ROI and to be stored in another variable and...

11년 초과 전 | 답변 수: 3 | 1

3

답변

더 보기