Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
fix a center of gravity loop
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
BA
am 27 Jul. 2022
Geschlossen: Image Analyst
am 28 Jul. 2022
imshow(matrix(:,:,1))
%identify axes
[x, y] = ginput(2);
% preallocate matrices
cog = zeros(size(matrix,3),1);
% the loop does not work and the error in the cog(i) line
% loop start
for i = 1:size(matrix,3)
I = matrix(:,:,i);
test = improfile(I,[x(1) x(2)],[y(1) y(2)]);
%the error comes from this line
cog(i) = sum((1:length(test)).*test)/sum(test);
% loop end
end
scog = (cog - min(cog)) / (max(cog) - min(cog));
1 Kommentar
Akzeptierte Antwort
David Hill
am 27 Jul. 2022
cog(i) = sum((1:length(test)).*test')/sum(test); %need to transpose test' to match dimensions
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!