MIsmatch between left and right side
Mostrar comentarios más antiguos
img = im2double(imread('veinvein.jpg')); % Read the image
img = imresize(img,0.5); % Downscale image
fvr = lee_region(img,4,20);
edges = zeros(2,img_w);
edges(1,:) = y_up;
edges(2,:) = round(y_lo + size(img_filt_lo,1));
It shows mismatch while run the above code
ERRORS:
Unable to perform assignment because the size of the left side is 1-by-161 and the size of the right side is 1-by-483.
Error in lee_region (line 61)
edges(1,:) = y_up;
Error in feature (line 11)
fvr = lee_region(img,4,20); % Get finger region
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB Mobile en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!