Anamika baruah
gauhati university
Followers: 0 Following: 0
Statistica
20 Domande
0 Risposte
RANK
82.760
of 300.753
REPUTAZIONE
0
CONTRIBUTI
20 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
25.0%
VOTI RICEVUTI
0
RANK
of 170.858
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 2 risposte | 0
2
risposteDomanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
how to display multiple images in multiple axes
if(E_dist(j) <.0061) subplot(3,3,m) %axes(handles.axes) imshow(I);
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 0 risposte | 0
0
risposteDomanda
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 ...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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); ...
oltre 11 anni fa | 0 risposte | 0
0
risposteDomanda
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...
oltre 11 anni fa | 2 risposte | 0
2
risposteDomanda
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...
oltre 11 anni fa | 2 risposte | 0
2
risposteDomanda
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 = ...
oltre 11 anni fa | 2 risposte | 0
2
risposteDomanda
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 = ...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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; ...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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); ...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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 % ...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 1 risposta | 0
1
rispostaDomanda
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...
oltre 11 anni fa | 3 risposte | 0
