[유니티(Unity)] (Post Process) Depth of Field

728x90
피사계 심도(Depth of Field)
피사계 심도는 카메라 렌즈의 초점 속성을 시뮬레이션하는 일반적인 후처리 효과입니다. 실생활에서 카메라는 특정 거리에 있는 물체에만 선명하게 초점을 맞출 수 있습니다. 카메라에서 더 가깝거나 멀리 있는 물체는 초점이 다소 흐려집니다. 블러링은 물체의 거리에 대한 시각적 신호를 제공할 뿐만 아니라 초점이 맞지 않을 때 이미지의 밝은 영역 주위에 나타나는 유쾌한 시각적 아티팩트에 대한 용어인 보케(Bokeh)를 도입합니다.

출처 : https://docs.unity3d.com/2018.1/Documentation/Manual/PostProcessing-DepthOfField.html
 

Unity - Manual: Depth of Field

Depth of Field The effect descriptions on this page refer to the default effects found within the post-processing stack. Depth of Field is a common post-processing effect that simulates the focus properties of a camera lens. In real life, a camera can only

docs.unity3d.com

Post Process 시작

 

[유니티(Unity)] (Post Process) start

시작에 앞서 유니티 Post Process를 공부하면서 정리할 겸 기능과 효과들을 하나하나 블로그에 정리해 나갈 생각입니다. 독학으로 하는 공부다 보니 빠진 부분과 틀린 부분이 있으면 댓글 남겨 주

junbastick.tistory.com


기본 준비
 

Unity-Chan! Model | 3D 캐릭터 | Unity Asset Store

Elevate your workflow with the Unity-Chan! Model asset from unity-chan!. Find this & other 캐릭터 options on the Unity Asset Store.

assetstore.unity.com

  • 피사계 심도를 더 잘 확인해 보기 위해 무료 캐릭터 에셋을 다운로드합니다.

테스트할 환경

  • 피사계 심도를 더 잘 확인해보기 위해 캐릭터 에셋을 다운로드하여 카메라 중앙 가깝게 위치시킵니다.

Depth of Field 설명
참고 : https://learn.unity.com/tutorial/post-processing-effects-depth-of-field-2019-3#
 

Post Processing Effects: Depth of Field - Unity Learn

Depth of Field is a common post-processing effect that simulates the focus properties of a camera lens. In real-world applications, camera lenses can sharply focus only on a specific object or distance. Objects nearer or farther from the camera will be out

learn.unity.com

Component

속성 설명
Focus Distance 초점의 거리를 변경합니다.
Aperture 조리개의 비율입니다. 값이 작을수록 파사계 심도가 얕아집니다.
Focal Length 렌즈와 카메라 사이의 거리를 결정합니다. 값이 클수록 피사계 심도가 얕아 집니다.
Max Blur Size 보케의 최대 반경을 결정하는 보케 필터의 크기를 결정 합니다.
값이 높을수록 GPU 시간이 더 오래 걸립니다.
옵션으로는 : Small , Medium , Large , Very Large 가 있습니다.
보케의 대한 참고 자료 : https://www.adobe.com/kr/creativecloud/photography/discover/bokeh-effect.html

테스트
On,Off

On
Off

Focus Distance 

Focus Distance : 1
Focus Distance : 10

Aperture

Aperture : 0.1

  • 피사계 심도가 얕아짐

Aperture : 32

  • 피사계 심도가 깊어짐
Focal Length

Focal Length : 1

  • 피사계 심도가 깊어짐

Focal Length : 300

  • 피사계 심도가 얕아짐
Max Blur Size

설정

  • 먼저 확실하게 확인을 하기 위해 피사계 심도를 제일 얕게 만들어 줍니다.

Max Blur Size : Small
Max Blur Size : Medium
Max Blur Size : Large
Max Blur Size : Very Large

  • 보케가 커짐을 확인할 수 있습니다
728x90