본문 바로가기

Nuke60

hiero api 정리 현재활성화된 viewer 선택hiero.ui.currentViewer()현재활성화된 Sequence 선택hiero.ui.activeSequence()Sequence 내부 Trackitem control하는 apiseq = hiero.ui.activeSequence()track 관련 api# 현재 선택된 track을 tuple로 반환 다수 선택해도 튜플hiero.ui.getTimelineEditor(seq).selection()hiero.ui.getTimelineEditor(seq).getSelection()# sequence 안에 모든 track을 선택처리함hiero.ui.getTimelineEditor(seq).selectAll()# sequence 안에 모든 track을 선택 해제함hiero.ui.g.. 2024. 12. 7.
웨비나 : Hiero & Nuke studio 소개 https://www.youtube.com/watch?v=Cmv7LreTZLQ  위로 갈수록 아래 프로그램에 기능들을 다 포함누크x는 3d카메라트래커 노드를 제공합니다 그리고 모션 백토 등과 같은 여러 더 실상 와 3b 합성에 사용할 수 있는 노드를 제공하기 때문에 이런 노드들은 활용해서 처리 하기 어렵거나 복잡한 부분들을 더 정교하게 합성 작업을 하실 수 있습니다 그리고 카라 vr 과 같은 플러그인을 제공하기 때문에 vr 작업도 가능 하고요 크로노스 퍼니스 같은 다른 플러그인 들도 다소 포함하고 있습니다 히어로 플레이어는 히어로 와 유사한데 아티스트 용 리뷰 툴이라고 보시면 될 것 같습니다히어로 이는 컨펌이 가능하고 그리고 익스포트 스트럭처 를 가지고 있고 타임라인 상에서 이펙트를 적용 하실 수도 있고.. 2024. 12. 7.
시퀀스넘버 추출 import repattern = r"\.(\d+)\.(dpx|exr)"i = "randompath/sample.00288376.dpx"rst = re.search(pattern, i)print(rst.group(1))# rst => 00288376# 혹시 몰라 확장자도 캡쳐 2024. 12. 7.
Using the Precomp Node https://www.youtube.com/watch?v=hHE-5fiNQLk  https://learn.foundry.com/nuke/content/comp_environment/organizing_scripts/using_precomp_node.html Using the Precomp NodeUsing the Precomp Node The Precomp node is like a Group node, but its content is stored in an independent .nk file. This allows you to save a subset of the node tree as a separate .nk script, render the output of this saved script, .. 2024. 12. 6.
Using Performance Timing - 무거운 노드 확인하는 방법 https://learn.foundry.com/nuke/content/comp_environment/organizing_scripts/using_performance_timingscript_profiling.html Using Performance Timing learn.foundry.comNuke에서 성능 타이밍과 스크립트 프로파일링 사용법 정리1. 성능 타이밍 활성화방법: Script Editor에서 nuke.startPerformanceTimers() 입력 또는 명령줄에서 -P 옵션 사용.효과: Node Graph에서 각 노드의 처리 시간 비율에 따라 색상이 표시됨.녹색: 빠른 노드빨간색: 느린 노드주의: 성능 타이밍 활성화 시 약간의 추가 처리 비용 발생.2. 타이밍 정보 출력화면 출력Script.. 2024. 12. 6.
Filtering Profile Data - 무거운 노드의 데이터 만들기 https://learn.foundry.com/nuke/content/comp_environment/organizing_scripts/filtering_profile_data.html Filtering Profile DataFiltering Profile Data The Profile tab's FILTER dropdown allows you to output only the profiling data you need, but the full data type set selected in the PROFILE dropdown remains available if you change your mind. The following controls determine what outlearn.foundry.com.. 2024. 12. 6.