face3d
face3d copied to clipboard
show.m error
Hi YadiraF:
whne i run the matlab code show.m in examples/Data/BFM, got the below error:
Error in show (line 38) patch('Vertices', uv_vertices', 'FaceVertexCData', tex', 'Faces', tri', 'FaceColor', 'interp', 'EdgeColor', 'none', 'EdgeLighting', 'none', 'LineWidth', 1);
@ForestWang use uv_vertices instead of uv_vertices transpose
@CalmCapK I met the same problem. What does it mean? And What is the size of the generated file?(BFM.mat)
@ForestWang use uv_vertices instead of uv_vertices transpose After I use uv_vertices instead of uv_vertices transpose, I met another problem as follows Index exceeds matrix dimensions. Can you give me some instructions? Thanks a lot
@xuexiaoxiaohu Replace line 38 with this:
patch('Vertices', uv_coords, 'FaceVertexCData', tex', 'Faces', tri', 'FaceColor', 'interp', 'EdgeColor', 'none', 'EdgeLighting', 'none', 'LineWidth', 1);