Answered
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...

10 years ago | 0

Answered
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...

10 years ago | 0

| accepted

Answered
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; ...

10 years ago | 0

Answered
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...

10 years ago | 0

| accepted

Answered
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...

10 years ago | 0

| accepted

Answered
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...

10 years ago | 0

Answered
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 ...

10 years ago | 0

Answered
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 ...

10 years ago | 4

Answered
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...

10 years ago | 0

Answered
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 ...

10 years ago | 0

Answered
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 ...

10 years ago | 0

Answered
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...

10 years ago | 0

| accepted

Answered
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

10 years ago | 0

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

10 years ago | 0

| accepted

Answered
Smoothing only peaks in a Curve
Did you check the smooth function?

10 years ago | 0

Answered
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?

10 years ago | 0

Answered
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/...

10 years ago | 0

Answered
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...

10 years ago | 0

Answered
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...

10 years ago | 0

Answered
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...

10 years ago | 0

Answered
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

10 years ago | 0

| accepted

Answered
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?

10 years ago | 0

Answered
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-...

10 years ago | 0

| accepted

Answered
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...

10 years ago | 0

| accepted

Answered
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...

10 years ago | 0

Answered
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 ...

10 years ago | 0

| accepted

Answered
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); ...

10 years ago | 0

| accepted

Answered
How can I remove the boundary around an object?
Please have a look at regionprops and bwboundary

10 years ago | 0

| accepted

Answered
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...

10 years ago | 0

Load more