Community Profile

photo

med-sweng


Last seen: mehr als ein Jahr vor Aktiv seit 2011

Statistiken

  • Explorer
  • First Review
  • Thankful Level 3

Abzeichen anzeigen

Content Feed

Anzeigen nach

Frage


Measuring the border (edge) irregularity
I have the following image and would like to measure whether the border is regular or irregular, or return a value for how regul...

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


A file name must be supplied
I have the following imwrite statement: imwrite(img, strcat(thisdir,'_',num2str(j),'_LABEL_',categoryClassifier.Labels(labe...

etwa 8 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


Subscript indices must either be real positive integers or logicals.
I get returned from a function I call the "pixel location". At that location, what I try to do is: A(pixel_location(1),p...

etwa 9 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


Assigning white pixels to specific locations
Say that we have a black image (i.e. zeros) of size 64x64, and say that I want to fill those 3x3 windows pixels in the middle of...

etwa 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Padding an array with some size, and the location
Say that we have an array, and I wanted to resize that array while keeping its content. Something I thought of is "padding". Whe...

etwa 9 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Extracting the text part from imread
Say that I have the following statement: I = imread('xyz.png'); How can I extract the following part only? xyz.png T...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Obtaining the largest object in an image
Say that I have an image with a big object, and then small objects spread apart. How can I retrieve only that big object? ...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Drawing the ellipse fit on another figure
Say that I have an irregular shape, for which I made an "ellipse fit", that is, I found the best ellipse fit for that irregular ...

mehr als 9 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Saving a plot with part of it filled with colour as an image
I have the following code portion where an plot is drawn, and part of it is filled with a white colour; plot(x,y,'Color',...

mehr als 9 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Filling ellipse fit with white, and making the rest of the image black
If you run the code <http://vision.gel.ulaval.ca/~jouellet/code/DualEllipse/de.html here>, you will get a best ellipse fit with ...

mehr als 9 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Input matrix must be two dimensional
I'm trying to use the code <http://www.mathworks.com/matlabcentral/fileexchange/15125-fitellipse-m/content/demo/html/ellipsedemo...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Index exceeds matrix dimensions.
I have the following portion: N = size(p,1); x = 1:N; y = x; [X,Y] = meshgrid(x,y); R = sqrt((2.*X-N-1).^2+(2.*Y-N...

mehr als 9 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Normalizing a gray scale image to the range [0,1]
I found the answer for my question here: http://www.mathworks.com/matlabcentral/newsreader/view_thread/297402

mehr als 9 Jahre vor | 0

Frage


Normalizing a gray scale image to the range [0,1]
I'm trying to normalize a gray scale image to the range [0,1]. I tried different ways for normalizing the image, but always gett...

mehr als 9 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Border is drawn around the ellipse, how to fill now?
In <http://blogs.mathworks.com/steve/2010/07/30/visualizing-regionprops-ellipse-measurements/ this> tutorial, an ellipse will be...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Obtaining the best ellipse fit of an irregular shape
Say that we have an irregular shape. How can we obtain the best `ellipse` fit of such shape? Does `regionprops` work for that? I...

mehr als 9 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How does MINPEAKDISTANCE work?
I'm trying to understand how `MINPEAKDISTANCE` works. I returned to the documentation, <http://www.mathworks.com/help/signal/ref...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Accessing cells of a cell
I have the following cell: <</matlabcentral/answers/uploaded_files/18653/Capture1.PNG>> Now, when I open it, you can s...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Setting a starting distance value in pdist
Hi! I'm using *pdist* to find the distance between two matrices. Those matrices change for every run of the program. My qu...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Error using fopen
Hi, I'm using the following command in a for-loop: imwrite(x,strcat('L_',num2str(c),'_m.bmp'),'bmp'); And, getting th...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Index of fuzziness in fuzzy c-means
I'm going through <http://www.mathworks.com/matlabcentral/fileexchange/25532-fuzzy-c-means-segmentation this> code for fuzzy c-m...

fast 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Window size or length
I came about a program that in order to set the window size, it mentions that as follows for instance: window_size = 20; W...

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


error - unexpected matlab expression
I have the following call to a function: callfun(I1, I2, [X Y ones(n,1)], w, m) But, I'm getting: Error: File: ...

fast 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


What does this parameter mean?
I came about this parameter passed to a function in `MATLAB`: [X Y ones(n,1)] Assume X: x-dimension; Y: y-dimension; n...

fast 10 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Using getpts to get selected points
I'm trying to use `getpts` to get the location of the selected points by the user. I used it as follows: [X,Y] = getpt...

fast 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Programming a MATLAB plugin
I couldn't find a clear reference on that. I just want to ask, if I want to learn how to program plugins in MATLAB, where is a g...

fast 10 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Selecting an ellipse as a region of interest (ROI)
I used imellipse to select an ellipse as my region of interest (ROI). The issue is that the ellipse I want to select is of aroun...

fast 10 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


TP, TN, FP, FN values
I came about the code proposed at this <http://www.mathworks.com/matlabcentral/newsreader/view_thread/327059 link> . Do you thin...

fast 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


4-neighbourhood of a set
Say the I have the following set (matrix): I=[4 3 5; 5 3 2; 5 3 2] How can I find the 4-neighbourhoods to that matrix? ...

etwa 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Attempted to access pixels(0,1); index must be a positive integer or logical
I'm trying to check the 3x3 neighbourhood for some pixel. For that, I did the following: neighbour_F(1) = pixels(...

etwa 10 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden