
My matlab
seamanj
这个作者很懒,什么都没留下…
展开
-
read selection
the format of .sel file is like:# per vertex status: 0=fixed, 1=deformable-region, 2=handle# 5261 vertices1111211101111function [group0, group1, group2] =原创 2017-01-18 22:51:37 · 298 阅读 · 0 评论 -
Laplacian surface editing
先讲下各个公式公式(2)是laplacian coordinates的定义公式(5)第一部分是保证laplacian coordinate坐标的一致性, 后面是handle点的约束公式(8)是T的构造公式(12)是求T中的系数2D MATLAB 版在它的project里面自带, 这里将其拓展成3D版本, 源代码如下:func原创 2017-02-15 22:27:35 · 3474 阅读 · 2 评论 -
两个3*3*n旋转矩阵在第三维相乘
比较low的方法for i = 1:nC(:,:,i) = A(:,:,i) * B(:,:,i);endelegant的方法, 用arrayfunarrayfun(@(M1,M2,n) M1(:,:,n)*M2(:,:,n), A, B, size(A,3) )原创 2017-02-04 00:11:23 · 2777 阅读 · 0 评论 -
arrayfun用法
arrayfun(@(n) norm(A(n,:)), 1:size(A,1))注意当返回不是标量的时候记得将'UniformOutput'参数改为0arrayfun(@(n) norm(A(n,:)), 1:size(A,1), 'UniformOutput', 0);原创 2016-11-14 04:21:02 · 4293 阅读 · 0 评论 -
求cluster的质心坐标
c0 = arrayfun(@(x) mean(v0([x neighbors{x}],:)), 1:n, 'UniformOutput', 0); c0 = reshape(cell2mat(c0),3,[]);c0 = c0'原创 2017-02-16 00:56:44 · 1656 阅读 · 0 评论 -
scalar2color
function c = scalar2color(scalar, precision)%precision表示有多少间隙, % convert scalar to color vector%%% Copyright (c) 2017 seamanj@NCCAif size(scalar,2)>size(scalar,1) scalar = scalar';endc原创 2017-02-02 04:09:04 · 1067 阅读 · 0 评论 -
perform_faces_reorientation
function faces = perform_faces_reorientation(vertex,faces, options)% perform_faces_reorientation - reorient the faces with respect to the center of the mesh%% faces = perform_faces_reorientation转载 2017-02-23 23:07:23 · 424 阅读 · 0 评论 -
perform_farthest_point_sampling_mesh
function [points,D] = perform_farthest_point_sampling_mesh( vertex,faces, points, nbr_iter, options )% perform_farthest_point_sampling - samples points using farthest seeding strategy%% [points,D]转载 2017-02-23 22:58:14 · 1071 阅读 · 0 评论 -
my plot mesh
function options = my_plot_mesh(vertex,face,options)% plot_mesh - plot a 3D mesh.%% my_plot_mesh(vertex,face, options);%% 'options' is a structure that may contains:% - 'normal' : a (原创 2017-02-13 01:06:18 · 660 阅读 · 0 评论 -
export frames as pictures
function show_initilization%show_target(0.2, 1)%show_template('v4_mesh0.obj', 0.5, 1, 'interp')name = 'target.obj';%options = [];options.name = name;[vertex,faces] = read_mesh(name);vert原创 2017-02-23 19:42:01 · 514 阅读 · 0 评论 -
write frames to a video
%# figurefigure, set(gcf, 'Color','white')Z = peaks; surf(Z); axis tightset(gca, 'nextplot','replacechildren', 'Visible','off');[az,el]=view;xl=xlim;yl=ylim;zl=zlim;%# preallocatenFrames =原创 2017-02-23 19:40:07 · 707 阅读 · 0 评论 -
文章索引加1
for frame = 55:-1:0 before_name = strcat(strcat('Q:\CGI2017\bak\RenderByHoudini\v4_mesh',num2str(frame)),'.obj');% add photo prefix after_name = strcat(strcat('Q:\CGI2017\bak\RenderByHoudin原创 2017-02-14 02:08:01 · 350 阅读 · 0 评论 -
convert 3D matrix into diagonal block matrix
function M = mat3D2blk(A, d)M = reshape(permute(A,[1 3 2]), [],d);M = mat2cell(M,(size(M,1)/d)*ones(2,1),d);M = blkdiag(M{:});原创 2017-01-24 00:06:21 · 421 阅读 · 0 评论 -
how change files in matlab2 , cell 函数的运用
function main pics = dir('coil-20-proc');%list all the files in folder photo name = extractfield(pics, 'name');% extract name fields into a cell array index = ~ismember(name,[ {'.'},{'原创 2017-02-19 06:51:46 · 538 阅读 · 0 评论 -
map floats between 0 and 1 to colorvector
[vertices1, faces1] = read_mesh('dog6.obj');[vertices1, faces1] = check_face_vertex(vertices1, faces1);X = vertices1(1,:);color = (X - min(X))./ (max(X) - min(X));color = color';colormap j...原创 2019-01-14 22:46:57 · 132 阅读 · 0 评论