photo

Praveen kumar


Aktiv seit 2016

Followers: 0   Following: 0

Nachricht

Statistik

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Undefined function 'readLetter' for input arguments of type 'logical'.
%NUMBERPLATEEXTRACTION extracts the characters from the input number plate image. f=imread('car3.jpg'); % Reading the numbe...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


img_r=imresize(n1,[42 24]); % imshow(img_r);figure; %Uncomment line below to see letters one by one % imshow(img_r);figure;pause(0.5) %------------------------------------------------------------------- % Call
Error using read_letter Too many input arguments. Error in main (line 132) letter=read_letter(img_r,num_letras); ...

mehr als 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Undefined function 'clip' for input arguments of type 'logical'. Error in lines (line 3) aa=clip(aa); Error in main (line 81) [fl re]=lines(re);
function [fl re]=lines(aa) %Divide text in lines. aa=clip(aa); r=size(aa,1); for s=1:r if sum(aa(s,:))==0 ...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Error using load Unable to read file 'templates'. Input cannot be a directory. Error in main (line 75) load templates
plz help me i am not knowing what to do.this error is occurring..i had the templates file in my matlab folder.

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Error using bitxor Matrix dimensions must agree. key1=bitxor(a,b);and key=imresize(key1,[1 256])
%key generation a=uint16(dec2bin(sud1)); b=uint16(dec2bin(sud2,8)); key1=bitxor(a,b); key=imresize(key1,[1 256])

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Function definitions are not permitted in this context.
% minutiae function consists logic to check bifurcation and termination points function y=minutie(x) i=ceil(size(x/2)); if x...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Matrix dimensions must agree.error in t=r.*e;
%Binarisation e=im2bw(z); figure,imshow(e); title('binarized image'); r=im2bw(w); t=r.*e; figure,imshow(t); ...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Index exceeds matrix dimensions.error for the line m(1:floor(n/2))=mod(x1(1:floor(n/2),y1));
%finger print template generation d=bwdist(v); so=sort(d); ud=unique(so); UD=uint8(ud); uni=unique(UD); n=si...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Function definitions are not permitted in this context. is the error
function y=minutie(x) i=ceil(size(x)/2); if x(i,i)==0; Y=0; else Y=sum(x(:))-1; end

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort