Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

i want to save my feature vector in a mat file how can i solve this error?

2 visualizaciones (últimos 30 días)
maida
maida el 8 de Dic. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
*Subscripted assignment dimension mismatch.
Error in mathworks (line 18)
Result(i, :) = fv;*
here is the code
clc
clear all;
close all;
Result = nan(50, 30000);
for i=1:50
a=num2str(i);
p=strcat('micro',a);
I = imread(strcat(a,'.png'));
I=entropyfilt(I);
I = double(I)/255;
isRotInv=false;
isChanWiseRot=false;
filtR= generateRadialFilterLBP(8, 1);
fv= efficientLBP(I, 'filtR', filtR, 'isRotInv', false, 'isChanWiseRot', false);
Result(i, :) = fv;
end

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by