A répondu
Matlab source code for file selection
This should get you started on selecting the sequential frames: % The following will give the lengths of the cons...

environ 10 ans il y a | 0

A répondu
Can any body help me to creat .mat file in current folder ?
I suppose you only want to save a specific variable instead of everything: If you would like to save only variable, a: a...

environ 10 ans il y a | 0

| A accepté

A répondu
If else condition to determine if a year is a leap year
These are the conditions for a <http://en.wikipedia.org/wiki/Leap_yea leap year> : * The year is evenly divisible by 4; ...

environ 10 ans il y a | 0

A répondu
running libor masek code for Iris Recognition
You might need to run the createiristemplate.m Include the subfolders using addgenpath so that the subfolders which contain f...

environ 10 ans il y a | 0

| A accepté

A répondu
how should i compress the some multiple images by 1st converting to them gray scale and all images are supposed to be of same size.
This could be because you are using imshow. Convert your image to grayscale using: I = rgb2gray(img); % Resize your im...

environ 10 ans il y a | 0

| A accepté

A répondu
How do I implement imhist?
You can find a nice implementation of <http://stackoverflow.com/questions/7401189/matlab-hist-function-for-image-data imhist> he...

environ 10 ans il y a | 0

A répondu
can anyone help me rectify matlab code for iris recognition? i am working on liber maseks open source code. but i am getting errors.. pls help..
Hello, You need to run the the createiristemplate.m file Please make sure your images are in the right directory and add ...

environ 10 ans il y a | 0

A répondu
How to run Libor Masek code?
Hello, You need to run the the createiristemplate.m file Please make sure your images are in the right directory and add ...

environ 10 ans il y a | 4

A répondu
parfor loop??? making it faster how?
you need first to use: matlabpool open, then use parfor You will find some nice examples <http://www.mathworks.com.au/hel...

environ 10 ans il y a | 0

A répondu
Automatic Segmentation of Mass in mammography images
You might want to have a look on Active contours/snake. This <http://www.iacl.ece.jhu.edu/static/gvf/ site> has a nice tutorial ...

environ 10 ans il y a | 0

A répondu
i have done 2d dft using fft2 and received phase and magnitude image.how to store that image shown using imshow in separate variable.
I suspect because the values are too high. You might need to rescale your image. This should rescale your image between 0 and ...

environ 10 ans il y a | 0

A répondu
how to find out the diameter of retinal vessels.
How about converting your image to binary followed by applying <http://www.mathworks.com.au/help/images/ref/regionprops.html reg...

environ 10 ans il y a | 0

| A accepté

A répondu
how to reduce bits per pixel in an image?
Check the <http://www.mathworks.com.au/help/images/ref/imresize.html imresize> function in Matlab

environ 10 ans il y a | 0

A répondu
How to smoothen the edges?
You might check some morphological operations you could perform on the image such as imfill and imdilate

environ 10 ans il y a | 0

| A accepté

A répondu
Smoothing only peaks in a Curve
Did you check the smooth function?

environ 10 ans il y a | 0

A répondu
Help with speeding up my code and adding a 4 plot sub function/local function?
Have you considered using parfor instead of a for loop?

environ 10 ans il y a | 0

A répondu
how can i perform histogram equalization for logical image
There are lots of options for histogram equalization, for example you can read on <http://www.mathworks.com.au/help/images/ref/...

environ 10 ans il y a | 0

A répondu
Hough transformation and Detecting parallel lines
I = imread('rectangle.jpg'); I2 = rgb2gray(I); %Get the 2 lines I3 = I2 > 60 & I2 < 75; % Clean image I4 = bwar...

environ 10 ans il y a | 0

A répondu
How to do segmentation for detecting microaneurysms?
Hope this gets you started: I=imread('retinal.PNG'); I2 = rgb2gray(I); I_bin = I2>150; In the next step, you can choose...

environ 10 ans il y a | 0

A répondu
Subscripted assignment dimension mismatch error
Not sure if this help but I cannot see the avg in your code. Have you initialized it? If you have, does its dimensions ma...

environ 10 ans il y a | 0

A répondu
i have a image of size 256 x 256. how to patch the image into 16 x16 sizes of patches,at the result i want to get 256 number of patches.
<http://www.mathworks.com.au/help/images/ref/blockproc.html blockproc> should be helpful hopefully

environ 10 ans il y a | 0

| A accepté

A répondu
Background subtraction algorithm for real time video?
You could get the frames from each video and apply your algorithm on each one. Is speed the issue here?

environ 10 ans il y a | 0

A répondu
how can i implement given formula in image processing?
There are lots of options for this: Please check out the Matlab functions <http://www.mathworks.com.au/help/images/contrast-...

environ 10 ans il y a | 0

| A accepté

A répondu
MATLAB BASIC : Storing values in array through indexing in a loop function
Just a quick comment on your code: Please make it more concise. It will be easier to understand and assist you. 1. Your f...

environ 10 ans il y a | 0

| A accepté

A répondu
How to detect eyes in matlab.
You could use the in built <http://www.mathworks.com.au/help/vision/ref/vision.cascadeobjectdetectorclass.html Viola Jones detec...

environ 10 ans il y a | 0

A répondu
sir,what is a matlab code for a two dimensional gabor filter?
Hopefully these 2 links will help: <http://www.mathworks.com.au/matlabcentral/fileexchange/5237-2d-gabor-filterver123 2D Gabor ...

environ 10 ans il y a | 0

| A accepté

A répondu
I have an image of an object with plane background, how can i know background intensity value
If you want to know the intensity at a particular location, I = imread('img.bmp); % read image intensity_val = I(20,40); ...

environ 10 ans il y a | 0

| A accepté

A répondu
How can I remove the boundary around an object?
Please have a look at regionprops and bwboundary

environ 10 ans il y a | 0

| A accepté

A répondu
How to rotate an image along y-axis?
Please try imrotate, you can find more information <B%20=%20imrotate(A,angle) here> Alternatively, you can try flipdim or rot...

environ 10 ans il y a | 0

Charger plus