Estadística
9 Preguntas
0 Respuestas
CLASIFICACIÓN
262.842
of 295.467
REPUTACIÓN
0
CONTRIBUCIONES
9 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
33.33%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.912
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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); ...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
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 ...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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.
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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])
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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); ...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 8 años hace | 2 respuestas | 0
2
respuestasPregunta
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
más de 8 años hace | 1 respuesta | 0