i am facing this error.
3 次查看(过去 30 天)
显示 更早的评论
Attempted to access voxels(:,4); index out of bounds because size(voxels)=[753571,3].
Error in CreateVisualHull (line 12)
voxels(:, 4) = zeros(size(voxels(:, 4)));
2 个评论
John D'Errico
2018-3-4
编辑:John D'Errico
2018-3-4
What about the error don't you understand?
voxels is an array of size 753571 by 3. Surely you know that by reading the first line of what you posted.
But you tried to access voxels(:,4) on the right hand side of that line, thus in:
Error in CreateVisualHull (line 12) voxels(:, 4) = zeros(size(voxels(:, 4)));
回答(1 个)
Walter Roberson
2018-3-4
The input for https://www.mathworks.com/matlabcentral/fileexchange/45989-visual-hull-matlab is not well documented, but looking through the routines, voxels(:,1) should be x coordinates, voxels(:,2) should be y coordinates, voxels(:,3) should be z coordinates, and voxels(:,4) should be some kind of value (for example brightness) for the pixel.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!