본문 바로가기

분류 전체보기172

HTML in Nuke https://benmcewan.com/blog/2019/08/12/html-in-nuke/ HTML in NukeHTML is a programming language designed to view documents or websites in a web browser, although we can make use of it in Nuke to add some extra style to our nodes, gizmos, etc. The aim of this art…benmcewan.com 텍스트 스타일링태그 기본 구조HTML 태그는 열림 태그(\\u003ctag\\u003e)와 닫힘 태그(\\u003c/tag\\u003e)로 감싸 텍스트를 스타일링합니다.기본 스타일굵게: 굵은 텍스트기울임: 기울어진 텍스.. 2024. 12. 17.
When to Utilize a Different Colourspace(다른 색 공간을 활용하는 시기) https://benmcewan.com/blog/2018/08/23/when-to-utilize-a-different-colourspace/ When to Utilize a Different ColourspaceWhen compositing, it can help to switch to a different colourspace to get the result you’re after. This article intends to gloss over the basics of what each colourspace is actually doing to …benmcewan.com Logarithmic Colourspaces (로그 색 공간)Logarithmic Colourspace란 무엇인가?로그 색 공간 변환.. 2024. 12. 17.
Nuke TCL https://www.nukepedia.com/reference/Tcl/ Nuke Developer Kit (NDK) 9.0v4: Nuke TCL Scripting: Main PageNuke Scripting Nuke's scripting language is based on TCL. The syntax of Tcl is described in detail in the TCL manual page. Note that Nuke does not use the Tk user interface toolkit, this is often described as part of Tcl. init.tcl: Whenever Nuke starts up,www.nukepedia.com Nuke TCL 스크립팅 개요 (Nuke.. 2024. 12. 16.
$gui 사용한 노드를 찾는 코드 $gui 주요 기능GUI 처리 비활성화:  $gui 연산자는 GUI를 통해 노드가 계산될 때 1을, GUI에서 노드를 처리하지 않는 경우 (예: 렌더링 중) 0을 반환합니다. 이 기능은 처리가 무거운 노드들(예: MotionBlur, Denoise, Defocus 등)을 비활성화하여 GUI에서의 작업 속도를 향상시키기 위해 사용됩니다 # Find all nodes with knobs that have $gui expressionsnodelist = []for node in nuke.allNodes(recurseGroups=True): for knob in node.knobs(): if node[knob].hasExpression(): if '$gui' in node[.. 2024. 12. 16.
Float https://compositormathematic.wordpress.com/2013/07/03/float/ FloatI think it’s fitting that my first real post should be something that is fundamental to our workflow, but continues to impress me in how it has revolutionised compositing – floating point num…compositormathematic.wordpress.com8bit 색상과 그 한계8bit 색상은 컴포지팅을 처음 시작한 사람들이 경험했을 법한 초기 색상 모델 중 하나로, 16,777,216개의 색상을 표현할 수 있습니다. 숫자로 보면 많은 것처럼.. 2024. 12. 13.
Colour Space 이해 https://compositormathematic.wordpress.com/2013/07/17/colour-space/ Colour SpaceThis subject can be a pretty daunting, so to simplify let’s start by inventing our own colour space. We’ll call it RAINBOW! RAINBOW colour space is going to be very simple and only repr…compositormathematic.wordpress.com RAINBOW 색공간 이해하기RAINBOW 색공간이란?RAINBOW는 가상의 색공간으로, 7가지 색상을 숫자값으로 매핑합니다.숫자값과 대응되는 색상은 다음과 같습니다:숫자값 .. 2024. 12. 13.