Kanwal Kaur
Followers: 0 Following: 0
Statistics
10 Questions
0 Answers
RANK
278,204
of 295,569
REPUTATION
0
CONTRIBUTIONS
10 Questions
0 Answers
ANSWER ACCEPTANCE
70.0%
VOTES RECEIVED
0
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How Lexicographical sorting is done for image?
How Lexicographical sorting is done for image??plz someone explain this.Thanks in advance :)
8 years ago | 1 answer | 0
1
answerQuestion
for i = 1:nclass,%1 inx_i = find(class== Numclass(i));%2 Xki = Vector(:,inx_i);%3 Dki = DW(:,inx_i);%4 sum(Dki); %5 M(i,:)=sum(Dki*Xki');%6 meanclass(i) = Numclass(i); %7end in this code meaning of 3rd n 4th line, n can we use ',' after for
for i = 1:nclass,%1 inx_i = find(class== Numclass(i));%2 Xki = Vector(:,inx_i);%3 Dki = DW(:,inx_i);%4 ...
8 years ago | 1 answer | 0
1
answerQuestion
what will this code will perform ? Numclass=[]; for i = 1:nclass Classes=data.y(find(data.y==i)); if size(Classes) ~=0 Numclass = [Numclass; Classes(1)]; end end
Numclass=[];%empty vector array for i = 1:nclass Classes=data.y(find(data.y==i));%Find indices and values of nonzero eleme...
8 years ago | 1 answer | 0
1
answerQuestion
what will code line 2 and 3 will do in below code? fprintf('\nInitializing...\n'); %1 strArray = java_array('java.lang.String', numberOfImagesToProcess);%2 for k = 1 : numberOfImagesToProcess%3 File1 = [imagesFolder '\'];%4 File = [imageFiles
fprintf('\nInitializing...\n'); %1 strArray = java_array('java.lang.String', numberOfImagesToProcess);%2 for k = 1 : num...
8 years ago | 1 answer | 0
1
answerQuestion
what is the difference between A=[]; and A={}; ?
what is the difference between A=[]; and A={}; ?
8 years ago | 1 answer | 0
1
answerQuestion
what will thie do filePattern = [imagesFolder, '\*.*'];
what will this statement will do ? filePattern = [imagesFolder, '\*.*'];
8 years ago | 1 answer | 0
1
answerQuestion
how this save will work, mkdir(database ) y = strcat(database,'/trainID'); save(y,'trainID')
mkdir(database) % will make new folder x= strcat(database,'/Subtrain'); %horizontally concatenatesstrings in arrays save(x,'S...
8 years ago | 1 answer | 0
1
answerQuestion
Subtrain(img,:)= wavelet1(I);
hii.. what is the meaning of this statement, plz explain.. Thanks in advance :) Subtrain(img,:)= wavelet1(I); x= strcat(dat...
8 years ago | 0 answers | 0
0
answersQuestion
please explain this statement for img = 1:s(1)
which type of for loop is this ? please explain the below statement.Thanks in advance. for img = 1:s(1)
8 years ago | 1 answer | 0
1
answerQuestion
in matlab code what is the meaning of [trainfile trainID] = folderSubFolderkvalidation(database);
i have written a code for segregating face images on the basis of gender of the person.and using this statement also. please exp...
8 years ago | 1 answer | 0