Houdini Resources

Updated on Sept 1  2022


copyright © Deborah R. Fowler


Deborah R. Fowler



Houdini Terminology

Posted Dec 2  2019
Updated on Sept 1  2022

Summary table giving a brief description (in alphabetical order) of common terminology used in Computer Graphics and some specific to Houdini including H18. These are purposefully simplified with links to more information and are intended to give a broad overview to the beginning user.

In addition, scratchapixel has some great tips on some of the concepts you will be dealing with such as BRDF, volume rendering, and subsurface scattering.

alembic (.abc) - file format popular for allowing data to go between dcc applications. Supported for examples by Houdini, Maya, and Unreal now. Some motion capture packages still rely on .fbx format

AOV - "auxiliary or arbitray output variable" is a term accepted in the industry and traditionally in Houdini had been called "Extra Image Planes". Relevant to lighting ie. isolates one part such as specular, or depth.

compression and packaging- of data is a handy way of reducing size or wrapping for storage or sending purposes.

Contexts - It is important to know that Houdini works in contexts. The latest being LOPS (Lighting Operators) which is listed separately on this page. Each one of these have contextual nodes and these networks can live in other contexts inside for example a sopnet, dopnet etc. These include but are not limited to:
COPs - Compositing Operators
CHOPs - Channel Operators

DOPs - Dynamic Operators - different types of solvers can be used inside a dop network and are dop operators for example
POPs - Particle Operators
ROPs - Render Operators
SOPs - Surface Operators (where you likely will spend much of your time)
SHOPs - Shader Operators (being phased out in favor of the label MAT for materials)
TOPs - Task Operators (related to PDG - Procedural Dependency Graph)

cpu - central processing unit - main processor and is the electronic circuitry that executes basic instructions such as arithmetic and logical operations. Modern CPU are microprocessors.

dcc - digital content creation

dynamics - in houdini dynamic networks are used to create simulations. The fundamental requirements are simulation objects (proxy), solvers and forces. NEVER render a dopnet.

gpu - graphics process unit - accelerates the creation of images in a frame buffer for display - tend to be efficient for cg and image processing (can be in the video card or embedded on the motherboard). Dedicated to graphics manipulation.

fbx - file format used to allow data (usually animation) to go between dcc (digital content creation) packages. It is an acronym for filmbox and is now owned by Autodesk. It was developed by Kaydara (a Canadian company and used for motion capture). Applications like Vicon Shogun and Motion builder still use fbx, but many dcc packages now recommend alembic (abc) workflow.

gui - graphics user interface - the tool interface that a user interacts with

hydra delegate - are part of Pixar's USD structure (scene descriptor) and hydra allows for viewport rendering with a consistent render (ie. karma in Houdini 18)

implicit - meaning implied. This is a term used for many things included surface descriptions or loops for example. It is implied.

installers -

karma - new to H18 cpu-render to replace mantra (as of 18.0.287 mantra still exists). Viewport becomes your renderview, and you use a karma node with "save to disk" to render your scene inside a lop network context (using USD). Note that now you must create your render folder.


LOPs - to be able to set up your scene in USD format to use Karma, you will use a lops network.It is a way to organize your entire scene. Click here for more info
MISSING IMAGE

microsolver - when you are adding data to a simulation, the node bringing that data in is referred to as a microsolver, such as a custom velocity field, or a gas advect field

openVDB - an efficient method of representing volumes developed by DreamWorks Animation. It uses a hierarchical data structure to make sparse volumetric data more efficient.

packed primitives - a houdini construct to more efficiently deal with geometry. Packed geometry makes it more efficient, faster, less memory. The packed piece makes it into an object entity that has orientation and location, you can use the pack and unpacked. It is like getting instancing for free.

RBD - rigid body dynamics - a type of solver for a simulation using rigid bodys. The most popular algorithm for solution is the bullet solver due to its speed.

simulation - is an imitation of a situation or process. In Houdini simulations are controlled in dynamics networks.

solver - an algorithm to replicate a simulation. In Houdini it typically is a node that processes a simulation object, under forces, based on a algorithm such as Rigid Body Dynamics (commonly the bullet solver), Flip, Vellum, etc.

USD - no, not US dollar, but "Universal Scene Description" developed by Pixar. A toolset for reading, writing, editing and previewing 3D data. It is "stackable" in non-destructive layers.
            Hydra is an API for generating an image from a USD scene. USD consists of C++ libraries with Python bindings for scripting.
            For more information click here

Vex - an internal language for Houdini, originally developed for shader writing (similar to rsl, syntax C-like) but used more broadly. In Houdini 13 the introduction of wrangle nodes with vex snippets made custom nodes easy. An excellent way to use a little bit of code to gain more power. For more information click here
MISSING IMAGE

Vops - the node based pictorial equivalent of Vex using code blocks (similar to Unreal's blueprint). Sample file here
MISSING IMAGE 

voronoi diagram - in 2D, divides up a plane into regions closest to a given point (points are called sites, seeds, generators, the areas or regions are called cells (diagram below)

MISSING IMAGE

voxel - in a 2D image you have RGB information stored and the term is a pixel, the 3D equivalent of storing information is a voxel and information stored may be referred to as a field.
MISSING
        IMAGE

viewport

Solaris - Houdini's tool to create and edit USD. A network context called LOPs for creating layout, lighting, rendering. Click here for more info