Réponse apportée
imshow - plotting a circular image, how to make corners white?
Could you share your matrix. Or try following command. colormap gray; This will make show boundary either black or white...

presque 14 ans il y a | 0

Réponse apportée
quick itteration
Though your code requires cleaning but this code will generate exact output you are required. In your code there are many variab...

presque 14 ans il y a | 1

Réponse apportée
quick itteration
I guess this can be done in one line without using for loop, and second line for plot. Could you tell us about L, N and other va...

presque 14 ans il y a | 0

Réponse apportée
compressing a image
What you explained about ratio, you better use <http://en.wikipedia.org/wiki/Run-length_encoding Run length Encoding (RLE)>. You...

presque 14 ans il y a | 2

Réponse apportée
Highlight a point on graph.
Lets say you have a curve, and you know one point which you want to highlight. Then simply plot that point with different marker...

presque 14 ans il y a | 7

Réponse apportée
How to make mex file of C program in matlab
if it is mex file, its mean C code for matlab. then simply compile it by this command in matlab editor. mex unravel.c; ...

presque 14 ans il y a | 2

| A accepté

Réponse apportée
Testing/training set
it totally depends on type of dataset. One of the famous technique is <http://en.wikipedia.org/wiki/Cross-validation_(statistics...

presque 14 ans il y a | 1

| A accepté

Réponse apportée
finding the best match between set of images using SIFT algorithm
As I understood, you want to do image to image matching. Let say your template image is T, and you set of images D. Each image...

presque 14 ans il y a | 3

| A accepté

Réponse apportée
cell array
try like this. entryname=[entryname1 entryname2]; use [] instead of {}. I hope it will work.

presque 14 ans il y a | 3

Réponse apportée
How can i capture image from webcame and save it in a folder ( for recognization)
May be this tutorial is helpful to you. <http://www.mathworks.com/matlabcentral/fileexchange/22792-video-tutorial-how-to-conn...

presque 14 ans il y a | 1

Réponse apportée
Searching files
yes it is possible to search files. you can write code as you like. For example I want to search file 'test.txt' in current ...

presque 14 ans il y a | 1

| A accepté

Réponse apportée
How to add gaussian noise to the 1D signal
Other then obove given solution, this might work.. Let say your 1D signal is *H*, then GH = H.*fspecial('gaussian', size...

presque 14 ans il y a | 1

Réponse apportée
K means clustering in ECG Signal
<http://www.vlfeat.org/ Vlfeat> is one the best opensource library for many computer vision and machine learning algorithms. It ...

presque 14 ans il y a | 2

Réponse apportée
help about (=) operator
You might not be using US keyboard layout. About keyboard layouts <http://en.wikipedia.org/wiki/Keyboard_layout click here>. Tr...

presque 14 ans il y a | 2

Réponse apportée
Help with For/If commands
Use switches .. I hope it will solve your problem. ex. switch choice case {1,4,6,7,8,10,11} % your code here...

presque 14 ans il y a | 2

| A accepté

Réponse apportée
image conversion
yes, you can convert color image to gray scale image, and gray scale image is 2-D image.

presque 14 ans il y a | 2

Réponse apportée
random number generation within the defined range
As Daniel suggested that we might not get exactly what you want. But there can be several tricks. Once possible trick is that yo...

presque 14 ans il y a | 2

Réponse apportée
How to put a good threshold in comparing images
It totally depends on type of images and applications. But you can keep various values of Threshold and on each value you calcul...

presque 14 ans il y a | 2

| A accepté

Réponse apportée
multiply col vector with matrix
You can do it like this. bsxfun(@times,M,N) If N is column vector then each colmn in M is multiplied by N, else if N is ...

presque 14 ans il y a | 1

| A accepté

Réponse apportée
crop image automatically
let say your image is I, and if you know your know the areas for your image to crop and those remain for all images then followi...

presque 14 ans il y a | 2

Question


Vectorization
Let say I have Matrix *M* with *i* rows and *j* columns. And one constant number *a* is given. Final output Matrix should be *N*...

environ 14 ans il y a | 2 réponses | 0

2

réponses

Question


rotate image
Dear all, Let say I have patch *P* and I want to rotate it in the direction of angle *T* (in degrees). Rotation should be si...

environ 14 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
pixel value in given direction
let say you want to get point (x2,y2) then x2 = x1 + d * cos(T); y2 = y1 + d * sin(T); I hope this is what you wanted...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
Publishing a Pdf
Hi, may be this discussion help you. <http://mathworks.com/matlabcentral/answers/26903-exporting-image-to-bounded-pdf>

environ 14 ans il y a | 2

Réponse apportée
reordering the data
Second possible way is D = [1 2 3 4 5 6 7]; declare any temp variable to have the order of indices. For example. T ...

environ 14 ans il y a | 2

Réponse apportée
magnitude and direction
I think you want to compute the SIFT right ? Anyway to divide the image into blocks, you can use following tip <http://mat...

environ 14 ans il y a | 3

Réponse apportée
Euclidian Norm and Brightness between 2 images
then I guess for L you can do following. R1 = R1(:); R2 = R2(:); G1 = G1(:); G2 = G2(:); B1 = B1(:); B2 = B2(:); ...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
magnitude and direction
what do you mean by direction of images. I hope you are talking about gradient value and direction (orientation) ?

environ 14 ans il y a | 3

Réponse apportée
calculating the mean
Hi, could you please reformat the code. As it is difficult to see code. whenever you have line other then code then make that...

environ 14 ans il y a | 1

Réponse apportée
edit-error in calculating dsit
Well I guess you want to get single scalar value as distance of A2 for each Chanel in A1. If so then I try to do in steps. There...

environ 14 ans il y a | 2

| A accepté

Charger plus