Respondida
UIGETFILE to filter out files with specific string
This submission from the file exchange might be what you are looking for: http://www.mathworks.com/matlabcentral/fileexchange...

casi 10 años hace | 0

Respondida
Change sublot size and position
You can play with the subplot command to make the first graph span multiple subplot spots. Here is a simple example where the si...

casi 10 años hace | 0

| aceptada

Respondida
How do I compile correctly a MATLAB GUI with the App Compiler?
Do you use global and/or persistent variables? If so you might want to get rid of them because standalone applications do not li...

casi 10 años hace | 0

Respondida
Method to count number of observations by category
what about: size(s(s == 1.00),1)) which would give you the number of occurences in s meeting the criterion. Or maybe...

casi 10 años hace | 0

Respondida
Creating an array with variables or a loop
You can move the dat(...) inside your for-loop: dat =cell(NumFiles,6); % NumFiles is the # of images you have. for k=1:N...

casi 10 años hace | 1

Respondida
How to convert a multipage tif image in RGB into Grayscale
So you have one single RGB image? If so you can use rgb2gray(Image) to get the grayscale. Otherwise you can access indi...

casi 10 años hace | 0

Respondida
Remove '%' sign in pie chart
From what I saw on the help, I think you need to create a cell array containing the labels you want, that is without % Their ...

casi 10 años hace | 0

| aceptada

Respondida
How to find an average of multiple images?
What is the class of I? It looks like sumI and I are not of the same class. Eg. if it is uint8, then use this line when you d...

casi 10 años hace | 0

| aceptada

Respondida
How to display values from MATLAB standalone windows deployment executable?
My guess would be that the "disp" command is only used to display stuff in the command window in the Matlab environment; for a s...

casi 10 años hace | 0

Respondida
How to get a only one table with a for loop?
What if you take the following commands out of the for-loop?: f=figure; data = {media,Std,DMA}; ColNames={'Med...

casi 10 años hace | 0

| aceptada

Respondida
How to change the numbering system in the y axis? pitcure inside
Maybe this: set(gca,'YTick', 0:1E5:8E5);

casi 10 años hace | 0

Respondida
Easy Question, update scatter point in loop
What if you try this: x1{1} = [.2; .3]; x2{1} = [.3; .4]; x3{1} = [.5; .6]; x4{1} = [.6; .7]; k = 1; figure for k = 1...

casi 10 años hace | 0

| aceptada

Respondida
Setting 'FaceAlpha'<1 for a patch object causes x- and y- axes of the plot to dissapear. Why and how can this be corrected?
I changed your code a bit and set the linewidth property to 1.5 (actually any value larger than 1.5 worked) and it seems to be o...

casi 10 años hace | 0

| aceptada

Respondida
why legend for multiple matrix is not showing the appropriate data?
When I run your code I get this: <</matlabcentral/answers/uploaded_files/14610/Fig_Rand.jpg>> Could you be more precis...

casi 10 años hace | 2

| aceptada

Respondida
Loop putting information into a new variable matrix
Since pixel_info is a cell array you might want to use curly braces {} to access the information it contains, so you would not g...

casi 10 años hace | 0

Respondida
Switch Case when a value stagnates
Here is a simple solution to detect the first occurence of values repeated 3 times; you could customize it to be more genera...

casi 10 años hace | 1

| aceptada

Respondida
Convert cell into double
If all your entries are numbers you can use cell2mat. Is that the case?

casi 10 años hace | 0

Respondida
Getting Data out of a Char/String
You might want to use regular expressions and the "match" option. Here is a simple example: If you write this: file_info...

casi 10 años hace | 0

Respondida
Error message in Intensity-Based Automatic Image Registration
It might be that you need to use grayscale images (using rgb2gray). Eg: movingRegisteredDefault = imregister (rgb2gray(movi...

casi 10 años hace | 0

| aceptada

Respondida
Can't drag rectangle object in GUI axis for large images
I found a workaround to the problem; it has to do with the call to imshow just before calling imrect. In imshow I have to sp...

casi 10 años hace | 0

| aceptada

Pregunta


Can't drag rectangle object in GUI axis for large images
I'm making a GUI (with GUIDE) in which there is an axis used to display image sequences. In order to let the user select a regio...

casi 10 años hace | 2 respuestas | 0

2

respuestas

Respondida
how to save variable from class of GUI to workspace?
Maybe you could use setappdata(...) in your GUI to store dial() and then use getappdata(...) to retrieve it in the workspace? I ...

casi 10 años hace | 0

Respondida
How to clear a particular field in GUI?
You could set the 'String' property to '' so that it displays an empty string: set(YourHandle,'String',''); or you could...

casi 10 años hace | 0

Pregunta


Using the Tiff class to read image sequences instead of stacks
Hi there, I want to read (as fast as possible of course) multi-dimensionnal (5D) microscopy images (eg. Height x Width x Chan...

casi 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


GUI does not recognize existing handles after using addlistener
0 down vote favorite I am quite new to MATLAB GUI programming (using GUIDE sorry) and I have an annoying issue: The GUI d...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Save a Tiff image to open as RGB with ImageJ
Hi my question is quite simple but I can't find a way to solve my little problem. How can we save an image in RGB format so t...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Overlay a scale bar over a running movie
Hi, I have a GUI (made with GUIDE) in which an image sequence stored as a movie container is displayed inside an axes. The di...

alrededor de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Export 5D image sequence in tif (and HDF5) formats
I'm looking for a way to export 5D image sequences in the tif and HDF5 formats. Sequences are made of RGB images and contain dep...

alrededor de 10 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Waitbar in a spmd block in a GUI?
Is there a way to monitor the progress of a calculation inside a spmd block? In the example below I would use a waitbar inside t...

alrededor de 10 años hace | 2 respuestas | 0

2

respuestas