nuke

The Foundry NUKE 12 mac版(电影特效合成制作软件) 12.0v4激活版

主宰稳场 提交于 2020-02-27 10:20:57
The Foundry NUKE 12 mac版 是专业的电影特效合成制作软件,NUKE无需专门的硬件平台,但却能为艺术家提供组合和操作扫描的照片,视频板以及计算机生成的图像的灵活、有效、节约和全功能的工具。在数码领域,NUKE已被用于近百部影片和数以百计的商业和音乐电视,NUKE具有先进的将最终视觉效果与电影电视的其余部分无缝结合的能力,无论所需应用的视觉效果是什么风格或者有多复杂。需要的朋友,欢迎下载使用。 The Foundry NUKE 12 mac激活版下载 https://www.macdown.com/mac/5605.html NUKE 12 Mac版功能特色 2D合成和视觉效果 1、节点工具集 Nuke拥有200多个创意节点,可提供您应对数字合成各种挑战所需的一切。这包括行业标准的键控器,旋转镜,矢量绘画工具,色彩校正等等。 2、深度图像合成 通过深度图像合成工具,您可以创建和处理每个像素包含多个不透明度,颜色和相机相对深度样本的图像,因此在内容更改时无需重新呈现CG元素。 3、立体工作流程 Nuke本身支持任意数量的图像流,使得使用多个摄像机视图变得简单。借助内置于基础应用程序中的高效立体工作流程,Nuke拥有您所需的一切,可以快速,高质量地处理原生立体后期制作或2D到3D转换工作。 4、的rotoscoping 通过直观的折叠层系统可以访问所有工具

New Machine Learning Server for Deep Learning in Nuke(翻译)

六月ゝ 毕业季﹏ 提交于 2020-01-04 08:46:32
最近一直在开发Orchestra Pipeline System,歇两天翻译点文章换换气。这篇文章是无意间看到的,自己从2015年就开始关注机器学习在视效领域的应用了,也曾利用碎片时间做过一些算法移植的工作,所以看到这篇文章的时候很有共鸣,遂决定翻译一下。 原文链接: https://www.fxguide.com/fxfeatured/new-machine-learning-server-for-deep-learning-in-nuke/ 正文: Recent years have seen the arrival of Machine Learning (ML) research into the area of visual effects. From noise reduction to facial pipelines, Deep Learning has proven to be a rich tool for major effects projects. One of the hallmarks of Machine Learning and Deep Learning, as we discuss in the next section, has been the widescale publishing and sharing of code and

Can I use an alias to execute a program from a python script

*爱你&永不变心* 提交于 2019-12-17 19:16:13
问题 I am almost brand new to python scripting, so please excuse any stupid questions, but any help anyone can give would be much appreciated. I am trying to write a python script for other people to use, and in it I need to call a program that I won't always know the path to. To get around that, I ask the user to provide the path to the program, which will work, but I don't want users to have to provide the path EVERY time they run the script so I have been trying to set up a bash alias by having

How to test items with each other in 2 dimensional list?

空扰寡人 提交于 2019-12-16 18:05:38
问题 We have a 2 dimensional list (for this example we have it populated with unique 6 nodes and 3 masks) myList = [[node1, mask1], [node2, mask1], [node3, mask1], [node4, mask2], [node5, mask2], [node6, mask3]] Now i need to test each other somehow and generate a new list to put each node that is connected to a mask in a separate [], so i can easily access it later, but also i need to filter nodes like "node6" because "node6" is only connected to one mask (in our case with "mask3" only) Basically

applescript to render nuke script in terminal

﹥>﹥吖頭↗ 提交于 2019-12-11 01:47:47
问题 I want to be able to drop a Nuke script on to an Applescript application and then for the Nuke script to start rendering in a terminal. The script needs to get the file path of the dropped item, paste that in to a terminal window along with 'nuke -xi ' and then hit return. So far I have.. on open dropped_item get the POSIX path of dropped_item and... tell application "Terminal" if not (exists window 1) then reopen activate end tell Any ideas would be greatly appreciated. 回答1: This shouldn't

How to cancel font shadow in nuke pyside

匆匆过客 提交于 2019-12-04 05:19:47
问题 I have a UI, which automatically sets font shadow in nuke, and how to cancel it. I want the font on this button to look like this, so there is no font shadow. This is my code,Thanks:) # -*- coding:utf-8 -*- from PySide import QtGui class MyButton(QtGui.QDialog): def __init__(self,parent=None): super(MyButton, self).__init__(parent) v_layout = QtGui.QVBoxLayout(self) btn = QtGui.QPushButton("Submit") v_layout.addWidget(btn) self.setStyleSheet(""" QPushButton{ height: 50px; border: 0px solid

How to cancel font shadow in nuke pyside

痴心易碎 提交于 2019-12-02 04:24:11
I have a UI, which automatically sets font shadow in nuke, and how to cancel it. I want the font on this button to look like this, so there is no font shadow. This is my code,Thanks:) # -*- coding:utf-8 -*- from PySide import QtGui class MyButton(QtGui.QDialog): def __init__(self,parent=None): super(MyButton, self).__init__(parent) v_layout = QtGui.QVBoxLayout(self) btn = QtGui.QPushButton("Submit") v_layout.addWidget(btn) self.setStyleSheet(""" QPushButton{ height: 50px; border: 0px solid rgba(255, 255, 255, 0); font-size: 18px; font-family: "Microsoft YaHei"; border-radius: 4px; color: rgba

Can I use an alias to execute a program from a python script

只愿长相守 提交于 2019-11-28 10:03:54
I am almost brand new to python scripting, so please excuse any stupid questions, but any help anyone can give would be much appreciated. I am trying to write a python script for other people to use, and in it I need to call a program that I won't always know the path to. To get around that, I ask the user to provide the path to the program, which will work, but I don't want users to have to provide the path EVERY time they run the script so I have been trying to set up a bash alias by having the script add to the ~/.profile and ~/.bashrc files. I can then use the alias to run the program from

How do I write to a Python subprocess' stdin?

╄→尐↘猪︶ㄣ 提交于 2019-11-26 03:22:28
问题 I\'m trying to write a Python script that starts a subprocess, and writes to the subprocess stdin. I\'d also like to be able to determine an action to be taken if the subprocess crashes. The process I\'m trying to start is a program called nuke which has its own built-in version of Python which I\'d like to be able to submit commands to, and then tell it to quit after the commands execute. So far I\'ve worked out that if I start Python on the command prompt like and then start nuke as a