David Young
University of Sussex and University of Southampton
Followers: 0 Following: 0
Professional Interests: Image Processing
Feeds
已回答
How can I overlap two images/pictures in Matlab?
You can use |hold| to superimpose contour lines on an image. Here's an example: % Get an image from a jpg file img = imr...
How can I overlap two images/pictures in Matlab?
You can use |hold| to superimpose contour lines on an image. Here's an example: % Get an image from a jpg file img = imr...
8 years 前 | 2
已回答
Image to Image correlation (moving window) function colfilt
You are likely to find <http://uk.mathworks.com/help/images/ref/normxcorr2.html normxcorr2> more suitable that |colfilt| for thi...
Image to Image correlation (moving window) function colfilt
You are likely to find <http://uk.mathworks.com/help/images/ref/normxcorr2.html normxcorr2> more suitable that |colfilt| for thi...
8 years 前 | 0
已回答
create a sliding window to determine when a % of numbers in a sequence equal a certain value.
The answer to problems involving a sliding window is very often to use the convolution operation, as here. % some random t...
create a sliding window to determine when a % of numbers in a sequence equal a certain value.
The answer to problems involving a sliding window is very often to use the convolution operation, as here. % some random t...
8 years 前 | 0
已提交
Affine optic flow
Estimates the parameters of an affine (first-order) optic flow model from two images.
8 years 前 | 6 次下载 |
已提交
Hough transform for circles
A Hough transform function for detecting circles, optimised to allow search over radii.
8 years 前 | 25 次下载 |
已回答
How do I connect plot points with lines using ginput?
The attached function should show you how to do what you need, though you will have to modify it for your purpose.
How do I connect plot points with lines using ginput?
The attached function should show you how to do what you need, though you will have to modify it for your purpose.
8 years 前 | 1
| 已接受
已回答
Finding columns that contain both integers and NaN
Yes, |isnan(x)| does what |x == NaN| would do if NaNs were equal to each other.
Finding columns that contain both integers and NaN
Yes, |isnan(x)| does what |x == NaN| would do if NaNs were equal to each other.
9 years 前 | 0
已回答
How do I use the ismember function (if possible) to locate the min/max GMT time elements within a cell array?
The problem is that you are passing |ismember| a cell array containing numbers, but it can handle cell arrays only if all they c...
How do I use the ismember function (if possible) to locate the min/max GMT time elements within a cell array?
The problem is that you are passing |ismember| a cell array containing numbers, but it can handle cell arrays only if all they c...
9 years 前 | 1
| 已接受
已回答
Creating Gibbs Ringing by changing tissue intensity
I guess you haven't had an answer yet because "Gibbs Ringing" is quite a technical and specialised area. However, the substance ...
Creating Gibbs Ringing by changing tissue intensity
I guess you haven't had an answer yet because "Gibbs Ringing" is quite a technical and specialised area. However, the substance ...
9 years 前 | 0
已回答
Save ginput values under a for loop
Just replace [B,A]=ginput; with [B(index), A(index)] = ginput; to store each pair of inputs in array elements. I...
Save ginput values under a for loop
Just replace [B,A]=ginput; with [B(index), A(index)] = ginput; to store each pair of inputs in array elements. I...
9 years 前 | 0
已回答
How can I use plus operation with more than 2 array
Either use A + B + C + D + Z or plus(A, plus(B, plus(C, plus(D, Z))))
How can I use plus operation with more than 2 array
Either use A + B + C + D + Z or plus(A, plus(B, plus(C, plus(D, Z))))
9 years 前 | 0
已回答
ICA image analysis steps
There's an ICA package on the <http://uk.mathworks.com/matlabcentral/fileexchange/38300-pca-and-ica-package file exchange> and a...
ICA image analysis steps
There's an ICA package on the <http://uk.mathworks.com/matlabcentral/fileexchange/38300-pca-and-ica-package file exchange> and a...
9 years 前 | 0
已回答
What does step instruction in matlab do?
It is documented: see <http://uk.mathworks.com/help/vision/ref/vision.videofilereader.step.html this>. Note that you have to loo...
What does step instruction in matlab do?
It is documented: see <http://uk.mathworks.com/help/vision/ref/vision.videofilereader.step.html this>. Note that you have to loo...
9 years 前 | 0
| 已接受
已回答
Is fftn() and ifftn() equivalent to a 3D Fourier Transform in this case?
|fftn(X)| and |ifftn(X)| carry out a 3-D FFT or a 3-D inverse FFT if |length(size(X))| is equal to 3.
Is fftn() and ifftn() equivalent to a 3D Fourier Transform in this case?
|fftn(X)| and |ifftn(X)| carry out a 3-D FFT or a 3-D inverse FFT if |length(size(X))| is equal to 3.
9 years 前 | 0
| 已接受
已回答
How to smoothen cropped image?
If you have the Image Processing Toolbox, you could use <http://uk.mathworks.com/help/images/ref/imgaussfilt.html imgaussfilt>.
How to smoothen cropped image?
If you have the Image Processing Toolbox, you could use <http://uk.mathworks.com/help/images/ref/imgaussfilt.html imgaussfilt>.
9 years 前 | 0
已回答
ellispse detection for cornea edges
General purpose ellipse detection may not be the best solution to this problem - if you haven't already seen it, <http://users.s...
ellispse detection for cornea edges
General purpose ellipse detection may not be the best solution to this problem - if you haven't already seen it, <http://users.s...
9 years 前 | 0
已回答
What is the difference in these two methods of finding coordinates of image?
The results of |find| are |[row, column]|. The results of |ginput| are |[column, row]|. That is, |find| uses the matrix conve...
What is the difference in these two methods of finding coordinates of image?
The results of |find| are |[row, column]|. The results of |ginput| are |[column, row]|. That is, |find| uses the matrix conve...
9 years 前 | 0
| 已接受
已回答
please give me a detailed description of sift transform in matlab coding and how they works
The <https://en.wikipedia.org/wiki/Scale-invariant_feature_transform Wikipedia article> is a good starting point. It has referen...
please give me a detailed description of sift transform in matlab coding and how they works
The <https://en.wikipedia.org/wiki/Scale-invariant_feature_transform Wikipedia article> is a good starting point. It has referen...
9 years 前 | 0
已回答
NEED A GAUSS FILTER CODING USING IMAGE PROCESSING with some Examples
If you have the Image Processing Toolbox, use <http://uk.mathworks.com/help/images/ref/imgaussfilt.html imgaussfilt>.
NEED A GAUSS FILTER CODING USING IMAGE PROCESSING with some Examples
If you have the Image Processing Toolbox, use <http://uk.mathworks.com/help/images/ref/imgaussfilt.html imgaussfilt>.
9 years 前 | 0
| 已接受
已回答
How to deform an image
Yes, it's <http://uk.mathworks.com/help/images/ref/imwarp.html imwarp>. You'll probably also want <http://uk.mathworks.com/help/...
How to deform an image
Yes, it's <http://uk.mathworks.com/help/images/ref/imwarp.html imwarp>. You'll probably also want <http://uk.mathworks.com/help/...
9 years 前 | 2
| 已接受
已回答
how to colored the edge detection result(binary image)?
You can set the colour map when you display the binary image. For example img = imread('pout.tif'); imedge = edge(img, '...
how to colored the edge detection result(binary image)?
You can set the colour map when you display the binary image. For example img = imread('pout.tif'); imedge = edge(img, '...
9 years 前 | 0
已回答
command or code for detecting zero crossing points in a signal
You can use logical tests to find the indices between which the signal changes sign. Then you need to interpolate if you want to...
command or code for detecting zero crossing points in a signal
You can use logical tests to find the indices between which the signal changes sign. Then you need to interpolate if you want to...
9 years 前 | 5
已回答
How can I repeat the following text 5000 times and save the solutions for the 5000 different betas in a 1x 5000 matrix ?
betas = zeros(1, 5000); % make array to store results for k = 1:5000 % ... your code ... betas(k) = beta; ...
How can I repeat the following text 5000 times and save the solutions for the 5000 different betas in a 1x 5000 matrix ?
betas = zeros(1, 5000); % make array to store results for k = 1:5000 % ... your code ... betas(k) = beta; ...
9 years 前 | 0
已回答
how to make global variable in matlab so that we can use in any .m file or any other method to use a variable in many .m files
If the m-files are scripts, they share the same top-level workspace and you can access the same variables from both of them. ...
how to make global variable in matlab so that we can use in any .m file or any other method to use a variable in many .m files
If the m-files are scripts, they share the same top-level workspace and you can access the same variables from both of them. ...
9 years 前 | 0
已回答
How to calculate phase angle between two sine wave from vectors
If you know the frequency, it is probably more accurate to fit a sine wave to each of the two vectors than to use the FFT. The p...
How to calculate phase angle between two sine wave from vectors
If you know the frequency, it is probably more accurate to fit a sine wave to each of the two vectors than to use the FFT. The p...
9 years 前 | 0
已回答
How do reshape cell array row to new vectors?
First, there's an error to correct. |Big_RIR_AVG(1)| is not a 59x1 double. It's a scalar cell containing a 59x1 double. This mig...
How do reshape cell array row to new vectors?
First, there's an error to correct. |Big_RIR_AVG(1)| is not a 59x1 double. It's a scalar cell containing a 59x1 double. This mig...
9 years 前 | 1
| 已接受
已回答
Enable/Disable uitabs in uitabgroup, with v2015b
A quick thought - how about using the SelectionChangedFcn callback of the uitabgroup object, to select another tab when one of t...
Enable/Disable uitabs in uitabgroup, with v2015b
A quick thought - how about using the SelectionChangedFcn callback of the uitabgroup object, to select another tab when one of t...
9 years 前 | 0
已回答
Shortest path that passes through certain nodes
If you search online for "travelling salesman problem matlab" you will find discussion and code that will help with this problem...
Shortest path that passes through certain nodes
If you search online for "travelling salesman problem matlab" you will find discussion and code that will help with this problem...
9 years 前 | 0
| 已接受
已回答
How can I add a digit to a pre-existing number randomly ?
To take a random sample from a vector, just use *randi* - no need for *randsample*. Example: numbers = [2, 3, 9, 7]; ran...
How can I add a digit to a pre-existing number randomly ?
To take a random sample from a vector, just use *randi* - no need for *randsample*. Example: numbers = [2, 3, 9, 7]; ran...
9 years 前 | 1
已回答
Help using accumarray on a 3d-matrix
I think it's simpler to use *mean* directly and avoid *accumarray*. So to get all the rainfall for 1999, for example, you could ...
Help using accumarray on a 3d-matrix
I think it's simpler to use *mean* directly and avoid *accumarray*. So to get all the rainfall for 1999, for example, you could ...
9 years 前 | 0
| 已接受