-1
votes
1answer
21 views

Floating point image and noise in MATLAB [closed]

I have an image with a floating points values, can I implement different types of noises on it while preserving its datatype?
0
votes
1answer
44 views

How to execute matlab code

I have a project with two images, and I want to use MATLAB to perform some operations on them. How do I send these images to MATLAB? How do I get the images back from MATLAB?
2
votes
1answer
29 views

Equivalent to matlab's imagesc in matplotlib?

I am coming to Python and numpy and matplotlib from a Matlab background. One function in matlab that I use all the time is imagesc. Is there an exact equivalent to this somewhere in matplotlib? I ...
1
vote
1answer
34 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
19 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
25 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
vote
3answers
33 views

Matlab - How to mask a 3-D image using a binary image

I have an image with red, green, blue channel and a binary version of the image. What I want to do is concatenate those 2 images so that the binary image works as the mask for the normal image. I ...
0
votes
1answer
34 views

How to draw a line with changing intensity/grayscale

If I have matrix/data with line intensity values: e.g. 0, 1, 2, 3, 4, 5, ..... M (where intensity value is gradually changing) or any random order of values So if I use the first intensity set of ...
1
vote
1answer
35 views

Extracting numerical data from an intensity printout

I'm looking to create an intensity matrix in Matlab from an intensity image plot (saved as a jpeg (RGB) file) that was made using what appears to be the jet colormap from Matlab. I am essentially ...
0
votes
3answers
34 views

Retaining a Plot on a Image drawn using impoint function

I have a number of images to be marked with certain fixed number of points. (object tracking) I am using impoint to make the points on the image and then plot to connect them to each other in a ...
0
votes
1answer
34 views

how to have color image bases on the pixels value in MATLAB?

I have developed a code in which I convert a point text file to a grid raster. The result is an image but in BW but I want to visualize this image in color. The color classification is based on the ...
2
votes
2answers
47 views

Matlab - How to measure the dispersion of black in a binary image?

I am comparing RGB images of small colored granules spilled randomly on a white backdrop. My current method involves importing the image into Matlab, converting to a binary image, setting a threshold ...
1
vote
1answer
18 views

MATLAB return image frames from video

I have a function that processes a video and return a couple of images from it. I am doing so by creating a new video inside the function containing the frames I want and returning the video and is ...
0
votes
2answers
59 views

Plot histogram(change axis)

I have n*2 matrix for example matrix A.First column is some index and the second one is the histogram.I want to visualise only the nonzero histogram,so, I filtered A and deleted the index with ...
0
votes
1answer
39 views

Using image data from warp/surf Image mapping function

So my previous was Mapping image into cylinder or sphere shape? I was able to map an image into sphere or cylinder shape by using warp function. But now, how do I retrieve or use the mapped image? My ...
5
votes
2answers
74 views

Mapping image into cylinder or sphere shape?

So lets say I have black & white image that is read with imread() command and saved into matrix A. I want to output/graph this matrix A image in a cylinder shape. I know how to draw a cylinder in ...
-3
votes
2answers
49 views

Image as a signal representation [closed]

I have an image A(RGB) and B which is a gray scaled 256*256 size. How does one represent a gray scaled and an RGB image as a signal with X axis showing the time and Y axis the amplitude or the values? ...
0
votes
1answer
31 views

how to change the color of one portion of an image to another portion of the same image using MATLAB

I have a color image. The image consists of an object which has a shadow. I have removed the shadow but the shadow portion's color is not similar with the background color .Now how can I match the ...
0
votes
1answer
25 views

How do I input an image name into a function in MATLAB?

Basically, what I'm trying to do is run the following function directly from the command window in MATLAB. My function itself is: function reconstruct_2(im_input,d,c,k) rgbpic = imread(im_input); ...
0
votes
1answer
49 views

How can I tell the difference between a .gif and a .jpg file using MATLAB or python without having the extension explicitly?

I have a database of files "1", "2", "3", etc[...]. They should have been downloaded with "1.jpg", "2.gif", "3.png", but this information wasn't available. My question is how can I get information by ...
-2
votes
2answers
58 views

convert to rgb image from 3 3D matrices in matlab

I have a converted a rgb image to a grayscale image,then I have retrieved R, G, B channels seperatly in 3 3D matrices..is there any way to concatenate these 3 3D matrices(R,G,B) to obtain a single RGB ...
0
votes
1answer
39 views

Sliding Window on two image(main image and sub image) matrices

I'm new to matlab and am stuck with some stuff. it would be grateful if you can help me with it. i have to proceed with the sliding window technique. the main window is supposed to be a 40x40 matrix ...
0
votes
1answer
44 views

Creating an image array and reading from it in matlab

I wanted to create an array of images and for that i have used the following code: fileFolder = 'C:\Users\Shoiab\Desktop\New folder'; >> filePattern = fullfile(fileFolder, '*.png'); >> ...
0
votes
1answer
34 views

Matlab: Load .tif > convert bmp 256 > convert bmp 24-bit

For some coding I would like to do the following: Read .tif file Convert to .bmp with 256 colours (got this from paint, can't find it in matlab!) Convert to .bmp with 24-bit (normal conversion to ...
0
votes
1answer
35 views

Error trying to convert x * y * 3 matrix to image in MATLAB?

I have an x*y*3 matrix in MATLAB which I'm trying to convert to an image (layer one is the R intensity, layer 2 is the G intensity, layer 3 is the B intensity. I'm currently only using an imwrite ...
0
votes
1answer
39 views

how to convert an image from index to rgb color usinh matlab?

how to convert an image from index to rgb color usinh matlab? I have previously converted it to rgb to index but when I use ind2rgb() to convert it back to rgb, nothing is changed in image.
2
votes
0answers
72 views

How to combine two features (two minimum distance classifiers)

Hello All with my first post here, I work on tracking objects through images without prior training. I use two features, the color of the region (the ab channels of the Lab space) and the HOG. In my ...
2
votes
0answers
61 views

Scatter plot of images using imshow() in matlab [closed]

I'm trying to create a scatter plot in MATLAB where the samples are gray-scale images, like this one: http://isomap.stanford.edu/web2.jpg. I'm able do it by first calling scatter function to create ...
0
votes
2answers
125 views

Homography Matrix for Image Stitching in MATLAB

ive been trying to compute the homography matrix in matlab by using manually selected corresponding points from 2 images. here is my code so far: spoints = [330.756756756757,923.310810810811; ...
-6
votes
0answers
38 views

membership function and Fuzzy classification [closed]

I want to implement 1: Convert an image into matrix. 2:Apply median filtering. 3: Decide the number and type of Membership functions for the input image by tuning the membership functions. The ...
-6
votes
1answer
89 views

pixel wise calculation of mean and standard deviation in matlab

I have an image in MATLAB. How can I calculate mean and standard deviation for each pixel?
0
votes
0answers
22 views

how to allows executing more training data than testing data

I am using matlab particularly bag of word model for visual recognition. I have got a code but I am wondering how can I execute more training dataset (classes) than testing dataset (testing classes). ...
0
votes
0answers
44 views

What is wrong with this jpeg based image compression?

As an assignment I wrote a simple jpeg like image compression. After I encode it, and decode it the image changes drastically.The mDCT() and mIDCT() do the discrete cosine transform and the inverse. ...
1
vote
1answer
34 views

How to render expressions in matlab gui?

I want to convert mathematical expressions from a string in LaTeX format to their neat form. My initial solution was using another program to convert string to image and loading the image in gui. Is ...
0
votes
1answer
46 views

Matlab - stacking Image (2d slices)

I have a set of projected 2D images (format double,) for making a tomograph. I have used iradon and created a tomograph along(XZ). Now I need to stack some of those layers ( say every 10th layer) into ...
0
votes
1answer
53 views

Matlab Update Image Handles

I'm creating an Image Editing Program using Matlab. The user uploads the image in one pushbutton callback function. The user can then use other pushbutton callbacks to edit the image (rotate, change ...
-2
votes
1answer
113 views

Converting a grayscale image to black and white

I have a grayscale image that only has the values 60 and 117. How can I convert the image to only black and white without graylevels? I tried the matlab function gray2ind, but didn't get the expected ...
-7
votes
0answers
63 views

How to make classifier in image processing? [closed]

I am just new in image processing. Please suggest me how to make classifier(any) in image processing in MATLAB?
1
vote
1answer
45 views

MATLAB help cropping an image

I am using MATLAB R2012a and I am trying to let the user crop the image WITHOUT the use of the built in function. here is my code: [x, y] = ginput(2); m1 = [x(1), y(1)]; m2 = [x(2), y(2)]; m1 = ...
0
votes
2answers
89 views

how to sharpen/soften an image in MATLAB

I am in MATLAB R2012a and am trying to soften images. Now I am trying to sharpen and soften images that I converted into matrices of doubles. I know there are functions to do just this but I have to ...
0
votes
2answers
55 views

Converting a matrix in a text file to a grayscale image

So I'm a bit confused about something. I created a function in C to calculate some values and store them in a matrix file. This matrix file opens in notepad and contains rows and columns of float ...
0
votes
2answers
57 views

changing bits per pixel in MATLAB

How does one change the bits per pixel of an image loaded into MATLAB? I use the file dialog and the imread functions to load the image into a matrix. i just need to change that image's bits per ...
-1
votes
1answer
108 views

how to retrieve original matrix from RGB image?

In Matlab, how to retrieve the original matrix from a RGB image? For my case, I have a 50x360 matrix. After imagesc, I save it as jpeg file. And now, I need to load back the matrix(50x360) from the ...
0
votes
3answers
50 views

Showing an image

I came to a matlab code where it first reads an image and converts it to double as follows: I = double(imread(img)); After that, it shows the image as follows: imshow(I/max(I(:))) What does that ...
0
votes
1answer
32 views

Axes keeps chaning size with imshow

I'm using imshow to plot a logical array that represents the letter "A". I also have an edit box that the user can enter to values in to describe the number of slices in the x and y direction; i.e. ...
0
votes
0answers
24 views

Visushrink, and Stationary Wavelet Transform

I have been playing around with this particular algorithm for de-noising for sometime now in Matlab. One interesting bit that I have noticed is that even in the case of SWT, the 1st Level diagonal ...
3
votes
3answers
93 views

Read multiple images on a folder in Matlab

I have a problem reading multiple images in Matlab from a folder. I want to read with their original name (with the command imread because are multiband). The names of the images are like '2001_01', ...
0
votes
1answer
54 views

Superimpose images MATLAB(grey with color)

I have two matrices, the first is the ROI from an dicom image (grey scale) and the second is a matrix with values between 0-1. In the second matrix I did a thresholding and kept only the values of a ...
-4
votes
0answers
34 views

Remote-Sensing Image Denoising Using Partial Differential Equations and Auxiliary Images as Priors [closed]

I hope you are having a great day. I am trying to understand this paper: https://www.dropbox.com/sh/sp19wshzx7hji01/nmoFzQGkGv with the help of examples in this folder: ...
0
votes
0answers
45 views

MATLAB: image AlphaData changes figure size

I have two images: im2 needs to be overlayed over im1 with a constant alpha map of 0.5. Whenever I set the 'AlphaData' for im2 (to reveal im1 below), the size of the figure/axes changes slightly. If ...

1 2 3 4 5 13