Anamika baruah
gauhati university
Followers: 0 Following: 0
Professional Interests: image processing
Statistiques
20 Questions
0 Réponses
RANG
189 383
of 295 467
RÉPUTATION
0
CONTRIBUTIONS
20 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
25.0%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
can anyone tell me about hsv color space and how rgv2hsv conersion work and why it is needed to count no of pixel
[index, map]=rgb2ind(I,65300); pixels= prod(size(index)); hsv=rgb2hsv(map); h = hsv(:,1); s = hsv(:,2); v = hsv(:,3); dark...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
i want to display two or multiple images in multiple axes how i write the code
b=dlmread('fr.mat') %b1=dlmread(fr) b1=dlmread('frs.mat') sum=0; m=2 for i=1:8 g = (b(i) - b1(j,i))^2 sum=sum+g end dis...
plus de 10 ans il y a | 2 réponses | 0
2
réponsesQuestion
how to use radio buttons and execute codes under selected button.I have two buttons local histogram and global histogram
% --- Executes on button press in local_hist. function local_hist_Callback(hObject, eventdata, handles) % hObject han...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
how to display multiple images in multiple axes
if(E_dist(j) <.0061) subplot(3,3,m) %axes(handles.axes) imshow(I);
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
can any one tell me what does the floating point values mean in the following code
darks = find(v <.2)'; lights = find(s < .05 & v > .85)'; h([darks lights])= -1; disp(length(darks)) black = length(darks)/p...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
i have calculated the distance of one image with 30 images,now i want to find the nearer distance with the smallest diatance and wnat to diaplay the images having small distance with the input image i.e the similar images.
b=dlmread('features38.mat') %b1=dlmread(fr) b1=dlmread('frs.mat') sum=0; for i=1:8 g = (b(i) - b1(j,i))^2 ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
how i call function with different parameter.i want call each crop image and want to calculate color feature
I_1=imcrop(I,[1 1 y/2 x/2]) figure,imshow(I_1); I_2=imcrop(I,[y/2 1 y/2 x/2]) figure,imshow(I_2); I_3=imcrop(I,[1 x/2 y/2 x...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
i have divide n images into 4 equal parts present in the database now i want calculate the color values from each part of the images using the following code.plz ans me
srcFiles=dir('fruits\*.jpg'); for i= 1:length(srcFiles) Filename=strcat('fruits\',srcFiles(i).name); I=imread(Filename); ...
plus de 10 ans il y a | 1 réponse | 0
0
réponseQuestion
please tell me the meaning of following code
darks = find(v <.2)'; lights = find(s < .05 & v > .85)'; h([darks lights])= -1; disp(length(darks)) black = lengt...
plus de 10 ans il y a | 2 réponses | 0
2
réponsesQuestion
how i divide n images present in a folder into 4 equal parts
srcFiles=dir('fruits\*.jpg'); for i= 1:length(srcFiles) Filename=strcat('fruits\',srcFiles(i).name); I=imread(Fi...
plus de 10 ans il y a | 2 réponses | 0
2
réponsesQuestion
how to display images using subplot in right corner of gui
I = imread('11.jpg'); I = rgb2gray(I); m=1; srcFiles = dir('fruits\*.jpg'); % the folder in which ur images exists for j = ...
plus de 10 ans il y a | 2 réponses | 0
2
réponsesQuestion
i have calculated the euclidean distance of one image with 30 images stored in a databse.Now how i display the images having the smallest distance?If i want to display 4 or 5 images
I = imread('11.jpg'); I = rgb2gray(I); m=1; srcFiles = dir('fruits\*.jpg'); % the folder in which ur images exists for j = ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
i have created an array of color values of some images,how i insert the name of the images in the array
black = length(darks)/pixels; white = length(lights)/pixels; red = length(find((h >.9167 | h <=.083) & h~=-1))/pixels; ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
can any one tell me the meaning of the following lines
[index, map]=rgb2ind(I,65300); pixels= prod(size(index)); hsv=rgb2hsv(map); h = hsv(:,1); s = hsv(:,2); v = hsv(:,3); dar...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
I have calculate the color histogram values of 30 images in a database. Now i want to calculate the local color histogram values of images dividing the image into 4 equal parts.How i proceed using the following code?
srcFiles=dir('fruits\*.jpg'); for i= 1:length(srcFiles) disp(i); Filename=strcat('fruits\',srcFiles(i).name); ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
I have calculate the euclidean distance between two mat files,one file store the color values of one image and other for 30 image.and I get the smallest distance. Now How i display the image having the smallest distance with the first image.
a = imread('11.jpg'); %a = rgb2gray(a); b=dlmread('features11.mat') b1=dlmread('frs.mat') for i=1:30 sum=0; fo...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
i have written a code for color moment ,is it appropriate code to calculate color moment from an color image
function colorMoments = colorMoments(image) % input: image to be analyzed and extract 2 first moments from each R,G,B % ...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
I have written a code to calculate color histogram of an color image..but i donot the meaning of each and every line.can anyone tell me the meaning of each line??
[index, map]=rgb2ind(I,65300); pixels= prod(size(index)); hsv=rgb2hsv(map); h = hsv(:,1); s = hsv(:,2); v = hsv(:,3); dark...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
I have stored some color values in an array.but it has some exponential values..how i normalise this values in matlab
a(i,1)=red a(i,2)=green a(i,3)=blue a(i,4)=yellow a(i,5)=cyan a(i,6)=magenta a(i,7)=black a(i,8)=white dlmwrite('fr.ma...
plus de 10 ans il y a | 1 réponse | 0
1
réponseQuestion
how to declare vector of size 64
I am trying to declare a vector of size 64 like zeros(64) but it gives all zero values,so i want to know how to declare vector o...
plus de 10 ans il y a | 3 réponses | 0