Tagged Questions
-4
votes
1answer
44 views
How to combine low and high frequencies of two images in Matlab
I would like to combine two images A and B in the following way:
1) I want to take a Fourier transform of both of them
2) For image A I want to apply a weighted filter, which gives more emphasis ...
0
votes
0answers
34 views
detect largest region and draw it on video in matlab
I have this piece of code which detects the largest region and draws a rectangle around it. I want to make it read from a video as VideoReader rather than from a camera.
Changing the videoinput to ...
2
votes
1answer
48 views
Matlab: How to vectorize a nested loop over a 2D set of vectors
I have a function in the following form:
function Out = DecideIfAPixelIsWithinAnEllipsoidalClass(pixel,means,VarianceCovarianceMatrix)
ellipsoid = ...
-1
votes
1answer
23 views
How does ''(integrated) intensity profiles'' matlab script work?
I am interested in plotting the intensity along a line, using Matlab.
I have found 2 functions to do this: improfile and integrated intensity profiles .
What is the difference? And on which ...
0
votes
1answer
25 views
Display range for RGB colors for imtool function in Matlab
In a normal situation ,when I use,
l = imread('football.jpg');
First I separate the bands of colors
i = l(:,:,1);
j = l(:,:,2);
k = l(:,:,3);
Then I attach them back.
im(:,:,1) = i;
im(:,:,2) = ...
0
votes
1answer
30 views
Choosing an area on the image for classification
If anybody is familiar with classification in remote sensing
you know at first we should choose a region on the image and use information on this region to extract statistical parameters.
how can I ...
1
vote
1answer
30 views
Taking too long time to compelete an operation and using lots of physical memory
I have this piece of code:
function Plot2DScatter(img1,img2)
n = size(img1,1);
m = size(img2,1);
axis([0 280 0 280])
hold on
for i=1:n
for j=1:m
x = img1(i,j);
y = ...
0
votes
1answer
41 views
“Median color” of a Image in Matlab
I'm doing some basic image processing in matlab (2010a) and I want to display some standard information of different pictures like the histogram etc.
Is there a way to get the "median color" of a ...
-2
votes
1answer
35 views
FingerPrint Enhancement in MATLAB
Can someone help me please with this code?
In the first part, I want the image to be read,get binarized, and then the thinning is to be done.That's what I have coded so far:
ImOriginal = ...
0
votes
0answers
13 views
Are SURF descriptors normalized with respect to orientation? [migrated]
I know that both SIFT and SURF descriptor vectors are normalized with (unit vectors) to deal with illumination changes, but as far as I can see, the SIFT descriptors are also normalized with the major ...
0
votes
1answer
16 views
Matlab Query: Image Processing, Editing the Script
I am quite new to image processing and would like to produce an array that stores 10 images. After which I would like to run a for loop through some code that identifies some properties of the images, ...
1
vote
2answers
40 views
How should I prepare positive images for HAAR training for hand detection?
I am using this dataset: http://www.robots.ox.ac.uk/~vgg/data/hands/
However, I am only going to use hands which are > 4200 sq pixels in area, which leaves me with just 621 hands. I realised that ...
-6
votes
0answers
55 views
Sampling using matlab
I need to write two functions in MATLAB:
J = Sample(I , p); where J is the output image, I is the input image, p is the sampling amount 01 is for up-sampling. Devise your own ...
-1
votes
2answers
37 views
how to get edge of image MATLAB image processing [closed]
how to get edge of image? i wanna code matlab
Image description:
7
votes
2answers
57 views
How to crop and rotate an image to bounding box?
I have a dataset of thousands of images containing hands
I also have .mat files which contain the coordinates of 4 corners of the bounding box
However, the edges of these bounding boxes are at an ...
0
votes
1answer
38 views
Implementing 'pairwise vector ordering' to perform morphological operations on color images in MATLAB
I'm trying to implement pairwise vector ordering as an ordering method for vectors of color images (in HSV preferably) to then be able to perform basic morphological operations on color images ...
2
votes
1answer
53 views
Vectorizing loops
I'd like to optimise the following code, which is just a matrix multiplication - I'm sure this can be done without the use of loops - but I can't quite seem to get it right.
k = [ 76 150 29; ...
-1
votes
1answer
46 views
Human attribute classifier [closed]
I am trying to incorporate human attributes(e.g. gender, age, hair color) for image retrieval project.
For that I need to learn these human attributes from my training facial images. So I was ...
3
votes
1answer
58 views
How to matlab continue processing while waiting for user input
Suppose we have the following for loop:
for i=1:100
% image processing calculation
% show image to the user and ask for his rating
rating(i) = input('Enter rating of the shown image\n');
...
0
votes
0answers
34 views
Matlab: Chi-Square Distance gives zero values
I have one image ImgA of a person, and ten test images. Among these ten, one image is of the same person of ImgA. I calculated the local binary pattern (lbp) histogram of all these images. Then I want ...
1
vote
0answers
42 views
Image Processing Issue: Fill NaNs in image, which mostly consists of NaNs
I have a dataset / image DD like the one in this image:
(by the way: is there a way of uploading small data sets here, so that you can actually work with the same data I use, without having to put ...
0
votes
1answer
36 views
Creating an image stack in MATLAB
I've imported a set of images in MATLAB, and I've converted them to grayscale. I must now create an image stack, "a 3D matrix of grayscale images". After this, I must create a 1D image intensity array ...
-1
votes
0answers
50 views
Matlab Multiple images: calculate regression coefficients for all pixels
I have 100 pairs of images (as matrices) and want to calculate a regression at each pixel for between the 2 datasets (one regression line for each pixel with n=100), then I want to save the results ...
-3
votes
0answers
51 views
Error in my project about image-processing [closed]
I post all the code of my project. I have to translate from C to MAtlab one line code that I put in quote. I tested 2 of the functions ROUNDIT and FTSHIFTING and they work good. In the code there is a ...
-1
votes
0answers
54 views
Detecting curves in a Binary Image
I need to detect the presence of up-curve,down-curve,left-curve and right-curve from a binary image of a handwritten word.Presence of loops also if possible.Can anyone tell me how to do that??Is there ...
3
votes
1answer
85 views
How to count number of 1 and 0 in the matrix?
I have an image of which I cut out only one column. After that I made it to be logical so there are be only 0 and 1 in this column.
Suppose my values in this column are
...
-2
votes
0answers
38 views
Matlab neighborhood Processing
Does anyone know how to program the following algorithm using Matlab?
It's a neighborhood processing for binary images:
Check all pixels in input image
If any presence of 0 (object), then check the ...
0
votes
1answer
68 views
Point of intersection of circle and binary image MATLAB
I have skeletonize binary image and the junction information. I want to draw circle at junction points as center and want to find the point of intersection of circle and binary image.
I have written ...
1
vote
1answer
74 views
Human detection from the image or video library
I want to recognize the human from the image or video. I have used OPENCVSharp for Face detection it works fine with front face and low accuracy for side face. what i want is human detection (face ...
0
votes
0answers
40 views
mahalanobis cosine distance measure
Iam trying to apply mahalanobis cosine distance measure but I can't understand how to implement. it is required to calc the similarity between images under log_Gabor transformation. can any one help ...
-1
votes
0answers
21 views
Error using Imrotate in clockwise direction in MatLab
I have a binary image II1. I want to rotate this image in clockwise direction and find the indices in particular column of the image. so I used imrotate(II1,-theta) (theta is angle I specified - 6.54) ...
-1
votes
0answers
59 views
compare the positions of the same object in 2 different pictures [closed]
I would like to compare the positions of the same object in 2 different pictures and get the difference between the positions in in terms of x and y coordinates.Suppose I have a picture with a square ...
-1
votes
0answers
57 views
Matlab: Linear Binary Pattern with SVM
I am trying to use SVM method to classify linear binary pattern (LBP) based images. The SVM part of this is related to this question. The difference here is, for the SVM input, I am going to give the ...
-5
votes
1answer
78 views
What is means by Plotting an Image ?What is the purpose of Image plotting in 2D or 3D? [closed]
What is means by Plotting an Image ?
What is the purpose of Image plotting in 2D or 3D ?
-1
votes
1answer
112 views
Use of Matlab normxcorr2 () template matching error occurs
I want to make the template matching, using the Matlab normxcorr2 (),
Results such as pictures:
http://imgur.com/D1yhitz
Left a successful match, the right failed,
Here is the code:
...
2
votes
2answers
63 views
Error reading an animated GIF file in Matlab
I read GIF files in the following way:
[image, map] = imread(imagePath, 'frames', 1);
However, reading the GIF image posted below I get the following error message:
Subscripted assignment ...
2
votes
1answer
27 views
Combining GIF images and colormaps to 3-D image arrays
When I read a color JPEG image:
jpgim = imread('path/to/image.jpg')
I get an MxNx3 array. However, with GIF files I also need to read the colormap:
[gifim, map] = imread('path/to/image2.gif')
...
-6
votes
0answers
35 views
there is error that image dimension matrix exceeds and there is error showing store(k)=WM_detect(ext_wm,orig_wm); [closed]
function WM_plot(r,c,ext_wm,orig_wm)
for k=1:1000
wm=randn(r,c);%depending on the size of the watermark
wm=uint8(wm);%if necessary
store(k)=WM_detect(ext_wm,wm);%wrong ...
-2
votes
0answers
39 views
Reading data from webcam and do some math with the pixles [closed]
i'm new to C++. i need some example and guide, so i can read from my web camera and reading pixel. for example i wanted to make an average of RGB for any pixel.
it's part of image processing project ...
2
votes
1answer
47 views
Matlab image centroid simulation
I was given this task, I am a noob and need some pointers to get started with centroid calculation in Matlab:
Instead of an image first I was asked to simulate a Gaussian distribution(2 dimensional), ...
1
vote
0answers
102 views
Matlab SVM for Image Classification
I am using SVM function of Matlab to classify images that are read from a folder. What I want to do is first read 20 images from the folder, then use these to train the SVM, and then give a new image ...
-1
votes
1answer
44 views
Removing junction points from binary image MATLAB
I have thinned the segmented image and found junction points marked as green points in an image (right image) then I delete junction pixels from image to disconnect each vessel segment but 2 more ...
0
votes
1answer
51 views
How to calculate median of frames efficient in Matlab?
I'm using median function (http://www.mathworks.com/help/matlab/ref/median.html) in Matlab in order to calculate average value of each pixels from each frame in a video. Here is my code:
[a,b,c,d] = ...
0
votes
1answer
71 views
how to change the pixel values in a rgb image in matlab
I have a rgb image, I want to change the pixel values greater than (r:175,g:255,b:55) to Nan in matlab, How can I do that. Please let me know
0
votes
2answers
113 views
K means clustering in MATLAB - output image
To perform K means clustering with k = 3 (segments). So I:
1) Converted the RGB img into grayscale
2) Casted the original image into a n X 1, column matrix
3) idx = kmeans(column_matrix)
4) ...
1
vote
1answer
45 views
Function to map an image to 3D point by point
I am trying to map my image point by point to 3 dimensional space.
For example, if my original image has intensity of 100 at location X, I want to plot this point in 3D location Y with intensity of ...
0
votes
1answer
38 views
Downsample chrominance components of images using matlab
I want to decompose an image to Y,Cb,Cr components and then to perform downsampling in YCbCr domain to form the 4:2:2 format.
Code for decomposition of the image to YCbCr:
img=imread('flowers.tif');
...
0
votes
0answers
42 views
How to find more than one matching pattern using Normalized Correalation
I'm using normxcorr2 to find the area that exactly match with my pattern and i also want to find the other area(in the red rectangle) that is look like the pattern. I think it will be works if i can ...
-1
votes
0answers
174 views
Ideal low-pass filter for image in Matlab [closed]
I want to implement the following low-pass filter in matlab:
H(u, v) =
{ 1 if D(u, v) <= D0
{ 0, if D(u, v) > D0
where D(u, v) = sqrt( (u - M/2)^2 + (v - N/2)^2 ) and
the user needs to ...
0
votes
1answer
51 views
Segregating digits from an image in matlab [duplicate]
I am doing a project to recognize the digits in a calculator screen. The full image is shown .
After some image processing, I have extracted only the screen from the full image as shown .
But the ...
