diff --git a/_posts/2024-06-28-Affine_Transformation.md b/_posts/2024-06-28-Affine_Transformation.md index f125c251e4c..c761bfc8331 100644 --- a/_posts/2024-06-28-Affine_Transformation.md +++ b/_posts/2024-06-28-Affine_Transformation.md @@ -126,7 +126,7 @@ $$\begin{bmatrix}\cos(\pi/3) & -\sin(\pi/3) & 0 \\ \sin(\pi/3)& \cos(\pi/3) & 0 그림 8. 3차원 공간의 Rotation 변환

-이 외에도 3차원 선형 변환이 동작하는 +이 외에도 3차원 선형 변환이 동작하는 방식은 다양하므로 본 글의 맨 위에 있는 데모 애플릿을 이용해 3차원 선형 변환을 수행해보도록 하자. # 아핀 변환 (Affine Transform) diff --git a/pics/2024-06-28-Affine_Transformation/affine_with_MATLAB.m b/pics/2024-06-28-Affine_Transformation/affine_with_MATLAB.m index 29e1816b4f7..7fd55f3c4c1 100644 --- a/pics/2024-06-28-Affine_Transformation/affine_with_MATLAB.m +++ b/pics/2024-06-28-Affine_Transformation/affine_with_MATLAB.m @@ -9,7 +9,7 @@ theta = 30; % 30도 회전 R = [cosd(theta) -sind(theta) 0; sind(theta) cosd(theta) 0; 0 0 1]; TR = T * R; % 이동 후 회전 - +n_steps = 100; for i_step = 0:n_steps temp_TR = (TR-eye(3)) * i_step/n_steps + eye(3); tform_tr = affinetform2d(temp_TR);