Domanda


Accessing a function from GUI1 in GUI2
How can I call a function in GUI1 called Autoscaleimage from GUI2? (Created by GUIDE). function [high,low]=Autoscal...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Passing an image between GUIDE GUI's
Hi, I am trying to pass an image between GUIDE GUI's and have read the various articles - and thought it was straight forward. ...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Keeping rows of a matrix between two indicies.
Hi. I want to remove all rows from a matrix below idx1 and above idx2. that is I only want to keep rows that are between idx1...

circa 8 anni fa | 2 risposte | 0

2

risposte

Domanda


Finding a point in data with FIND - accommodate both increasing and decreasing data
Hello, I have data that I want to find the point closest to a threshold (th=800). 1728.00 1755.00 1778.00 ...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Stacking data sets into 1
I am trying to stack data. I have an matrix (ROI), that I obtain the rows from. Each row is my y data. The x data is just the ...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Problem with Interp1
Hi, I cannot get interp1 to give me the correct answer. I have a simple, data set (see below) and all I want to do if use inter...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Highlighting (make bold or underline) an item in a cellstring to be used in an annotation
Hi, I want to highlight by either underlining or making bold or different color only one cell string in the annotation: <</ma...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Extracting sum of intensity values at various locations with various diameters
Hello. I have an image (grayscale) of spots, that have a spread of intensities and sizes. <</matlabcentral/answers/uploaded...

circa 8 anni fa | 1 risposta | 0

1

risposta

Domanda


Using current points instead of ginput to get locations on axes
Hi. I am currently using ginput to select two points on an image to then draw a line. The problem is that my image is mainly bla...

oltre 8 anni fa | 1 risposta | 0

1

risposta

Domanda


RegionProps Major / Minor axis determination Problem
Hi, I am getting a strange result using regionprops. I have an image that I have the locations of the centroids (x1,y2) and my a...

oltre 8 anni fa | 2 risposte | 0

2

risposte

Domanda


Various inputs and outputs in functions
Hi. I have several techniques to find spots on an image and rather than have say 5 different functions I want to create one and...

oltre 8 anni fa | 2 risposte | 0

2

risposte

Domanda


Figure identity Question with Loops
Hi, I am creating a figure on each pass in a loop. On this figure I do several plots (20 of them) but always plot to figure(1...

oltre 8 anni fa | 2 risposte | 0

2

risposte

Domanda


max value of poynomial surface fit
I'm trying to fit a 2D surface and extract the max value from the fit. The fit seems to be working: x=[1 2 3 1 2 3 1 2 3]'...

oltre 8 anni fa | 2 risposte | 0

2

risposte

Domanda


Programatically getting contents from an edit box.
sorry to raise another thread, I had previously closed with an accepted answer, but this was by mistake. I have tried all sugge...

quasi 9 anni fa | 0 risposte | 0

0

risposte

Domanda


Horizontally concatenating two column vectors with a comma
Hi, I have an array called Data: Data= 1.0e+03 * 1.7583 1.4163 1.7493 0.5127 0.1946 1.4305...

quasi 9 anni fa | 2 risposte | 0

2

risposte

Domanda


Saving a uitable contents for any number of columns.
I have the following code to save the contents of a uitable but for a fixed number of columns. How can I make it generic so it w...

quasi 9 anni fa | 1 risposta | 0

1

risposta

Risposto
Deleting a rectangle created in one function from another function
hl = findall(handles.axes1, 'type', 'rectangle')

quasi 9 anni fa | 0

| accettato

Domanda


Deleting a rectangle created in one function from another function
If I create a rectangle on an image from one function via: function1(handles) axes(handles.axes1); hr=rectangle('Posi...

quasi 9 anni fa | 1 risposta | 0

1

risposta

Domanda


Problem with imrect and position vector returned.
Something very strange is happening. Im using imrect to get a user defined ROI from an image (taken from an axes on a GUIDE GUI...

quasi 9 anni fa | 2 risposte | 0

2

risposte

Domanda


Saving a stack of images
Hi. I have a set of tiff images in an array (expressed as an array of double). I want to save as a stack of images. I have t...

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


ButtonDownFcn question - different actions on different axes (using GUIDE)
Hi. I am using a mouse down call back to plot a linescan on an image at the mouse location. This all works fine. My issue is...

circa 9 anni fa | 0 risposte | 0

0

risposte

Domanda


Programatically (i.e. not using guide) accessing an edit box in another function
hi. I have create a figure and want to manually create a button and edit box on it too %Add push button and edit boxes to ...

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


Displaying binary data in a uitable
How do I show the binary values in a uitable. This was my attempt: IM=getimage(handles.axes4); %Image data in 16 bit...

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


Passing the listbox name to a function
Hi, I have a function that updates the files in a directory into a listbox: % Refresh list Box fname=get(handles.tex...

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


Changing the histogram colour from within another function
Hi, I have a histogram function "myHistogram" that I want to be able to change the colour of the bars from another function....

circa 9 anni fa | 0 risposte | 0

0

risposte

Risposto
Averaging of "similar data" in vector
array = x'; sortedArray = sort(array); nPerGroup = diff(find([1 (diff(sortedArray) > threshold) 1])); groupArray = ma...

circa 9 anni fa | 0

Domanda


Averaging of "similar data" in vector
Hi. I have a vector x as below. There are clearly "groups" of data. I want to find the average of each group This was my at...

circa 9 anni fa | 2 risposte | 0

2

risposte

Domanda


Vectorization instead of for loop
Hi. I have an image with about 5000 objects on that I have the centroid (xf,yf) locations for. My aim is to take each one and...

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


Swapping from hist to histogram
Hi, under the recommendation of Steven Lord, I am trying to update my code and not use hist as the histogram function and instea...

circa 9 anni fa | 1 risposta | 0

1

risposta

Domanda


Bar Chart Log Axis
I have data that I want to create a barchart from. I require the x-axis to be log10. [counts,xb]=hist(data(:,3),n...

circa 9 anni fa | 1 risposta | 0

1

risposta

Carica altro