Réponse apportée
Counting of Lights
Sure, but exactly how you do it depends on many factors which you haven't stated in your question. Without that information, ...

plus de 14 ans il y a | 0

Réponse apportée
to find length of edges
Guessing a little, but I suspect that the following functions will be sufficient: * sum * bwlabel * regionprops

plus de 14 ans il y a | 0

Réponse apportée
How can I make a specific color of an image transparent?
There may be a way that allows you to overlay the images using graphics operations, but here's an alternative way that does it b...

plus de 14 ans il y a | 3

Réponse apportée
How to find the cost for implementing an fft
I guess you mean the cost involved in _executing_ an fft. (The cost involved in _implementing_ an fft would the amount you'd nee...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
struct array
for i=1:4 Data.(Name{i}) = Temp{1,i}; end

plus de 14 ans il y a | 0

Réponse apportée
8-bit plane slicing for an image
You should be able to simply use bitget, as in im = imread('pout.tif'); bit1 = bitget(im, 1); % lsb for example ims...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
How to get the coordinate of this four points?
Here's another approach which works with the clean image you've given us. It's not as neat as <http://www.mathworks.co.uk/matlab...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
array dimensions equivalence check?
One alternative: isequal(size(A), size(B)) || (isvector(A) && isvector(B) && numel(A) == numel(B))

plus de 14 ans il y a | 6

| A accepté

Réponse apportée
error: Subscripted assignment dimension mismatch
The problem is that the length of the output vector depends on the time delay. Each time df is called, it produces a vector of a...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
To split a matrix into equal parts.
If your original matrix is m, then provided its size is even on each dimension, you can divide it into four equal pieces like th...

plus de 14 ans il y a | 1

Réponse apportée
How to calculate with sigma notation in matlab?
If you need a numerical result, the sigma notation turns into a call to the sum() function. Your example might look something li...

plus de 14 ans il y a | 0

Réponse apportée
change the angle of fourier transform and see the new image
You need to combine the angle and the amplitude to get a single complex array before inverse transforming. Try imshow(ifft2...

plus de 14 ans il y a | 1

Réponse apportée
how to segment the grey level image by using watershed algorithm
There is sample code in the demo "Marker-controlled watershed segmentation" in the Image Processing Toolbox, if you have it.

plus de 14 ans il y a | 0

Réponse apportée
what is ground truth image? how to create it in matlab??
"Ground truth" means a set of measurements that is known to be much more accurate than measurements from the system you are test...

plus de 14 ans il y a | 4

| A accepté

Réponse apportée
read a radiology image series ( DICOM ) on MATLAB platform
MATLAB has an <http://www.mathworks.co.uk/products/image/index.html Image Processing Toolbox> which has many tools for image pro...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
how can i blur an image by removing high frequencies of it's DFT
There's a demo that does this <http://www.mathworks.co.uk/matlabcentral/fileexchange/28810-fourier-transform-demonstration here>...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Deriving PDF from a given signal without using the hist() function?
The pdf function is not useful for this. It generates the theoretical PDF for a named distribution, but does not estimate an emp...

plus de 14 ans il y a | 1

Réponse apportée
Real cepstrum in loop
Your receps function returns a vector with 240 elements, and you are trying to assign these to a single element of tab. The erro...

plus de 14 ans il y a | 0

Réponse apportée
Spatial Frequency
From <http://www.mathworks.co.uk/matlabcentral/fileexchange/28810-fourier-transform-demonstration this demo>: The Fourier com...

plus de 14 ans il y a | 0

Réponse apportée
Counting the pixels within a circle detected in an image
How standard are your images? Could you choose the circle whose radius and centre coordinates are within expected ranges? If yo...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Edge Detectors
Canny.

plus de 14 ans il y a | 0

Réponse apportée
Detecting circles in an image
You could try *normxcorr2*. There's example code in the accepted answer to <http://www.mathworks.co.uk/matlabcentral/answers/244...

plus de 14 ans il y a | 0

Réponse apportée
what is Frequency in a image
<http://www.mathworks.co.uk/matlabcentral/fileexchange/28810-fourier-transform-demonstration Another tutorial>

plus de 14 ans il y a | 1

Réponse apportée
Pupil Detection using Hough Transform
It's hard to help when you don't say what you have tried so far. The HT contributions on the file exchange should work - have yo...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Image processing using indexing
The details depend on what class your images are, but here's an example that you can probably modify as needed. % test data -...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Using Optical Flow to warp an image
Given a vector for every pixel, you can use interp2 to do the warping and to handle the non-integer lookup. Suppose that vx repr...

plus de 14 ans il y a | 4

Réponse apportée
matrix ifft tranform
m = [1 1 -1 1 % data matrix 1 1 1 1 -1 -1 -1 1 1 -1 -1 -1 1 -1 -1 -1 -1 -1 1 1 1 1...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
electromagnetism
To distinguish blurred and sharp images, you could use a standard measure of blur, such as <http://stefan.winklerbros.net/Public...

plus de 14 ans il y a | 0

Réponse apportée
vectors from array
vector = array(:, column_number)

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Cut an image based on pixel size
You can cut the blob up using morphological operations, as shown below. A point on terminology: all pixels are the same size ...

plus de 14 ans il y a | 0

| A accepté

Charger plus