Houdini 20.0 ノード TOPノード

Attribute Randomize TOP node

Create randomly-generated integer and float attributes on work items.

Since 20.0

This node provides methods for creating float and integer array attributes populated by random values.

パラメータ

Generate When

このノードがワークアイテムを生成するタイミングを決めます。 このノードがどの生成モードを必須にしているのか、もしくは、ワークアイテムを動的に生成させる必要があるのかどうか分からないのであれば、通常では、これを“Automatic”のままに設定してください。

All Upstream Items are Generated

このノードは、すべての入力ノードが自身のワークアイテムを生成した時にワークアイテムを生成します。

All Upstream Items are Cooked

このノードは、すべての入力ノードが自身のワークアイテムをクックした時にワークアイテムを生成します。

Each Upstream Item is Cooked

このノードは、入力ノード内のワークアイテムがクックされる度にワークアイテムを生成します。

Automatic

入力ノードの生成モードに基づいて生成モードが選択されます。 入力ノードのどれかがその入力のクック時にワークアイテムが生成されている場合、このノードには Each Upstream Item is Cooked が設定されます。 そうでない場合、 All Upstream Items are Generated が設定されます。

Create When

When this parameter is on, you can set it to an expression that’s evaluated for each work item. The attribute below will only be created/updated on a work item if this parameter’s expression returns to a non-zero value for that item. For example, to set only an attribute on work items whose tile_x attribute is greater than 5, enable this parameter and set its expression to @tile_x > 5.

New Attribute Name

Name of the attribute to create.

Existing Name

What to do when there is already an attribute with the name New Attribute Name .

Replace Existing Attribute

Replace the attribute if it already exists.

Keep Existing Attribute

The old attribute is kept and no values are modified.

Update Existing Attribute

Overwrite the existing elements in-place, does not remove unaffected elements.

Append to Existing Attribute

Adds new elements to the end of the existing array.

Prepend to Existing Attribute

Adds new elements to the front of the existing array.

Generate Warning on Type-mismatch

When the existing attribute has a different type, generate a node warning and does not change the attribute.

Generate Error on Type Mis-match

When the existing attribute has a different type, generate a node error.

Array Type

The data type of the array to create. If set to Float, numbers from integer distributions will be converted to a Float attribute. If set to Integer, numbers from floating point distributions will be rounded and converted to an Int attribute.

Rounding

This determines the method that is used to round numbers from floating point distributions to integers. This is enabled if Array Type is set to Integer.

Round Nearest

Round to the nearest integer. For example: 1.7 rounds to 2 and 1.2 rounds to 1. When a number is perfectly between two integers, we round up; i.e. 1.5 rounds to 2.

Round Up

Round to the nearest integer greater than the generated number. For example: 1.2 and 1.7 both round to 2.

Round Down

Round to the nearest integer less than the generated number. For example: 1.2 and 1.7 both round to 1.

Array Size

The size of the resulting array of random numbers.

Random Options

Random Seed

The random seed used to generate the random numbers. Modify this if you want to generate different random numbers from the same distribution. Otherwise, if the seed remains the same, it is guaranteed that with every run, the node will generate the same numbers. Two nodes with the same seed and settings will also generate the same numbers.

Random Distribution

The type of probability distribution from which values are generated.

Uniform (Continuous)

The generated values will be between Min Value and Max Value (inclusive), with equal probability for all values in that range.

Uniform (Discrete)

The generated values will be between Min Value and Max Value (inclusive), landing only on values that are some multiple of Step Size greater than Min value, with equal probability for all such values.

Two Value

The generated values will either be Value A or Value B, depending on Probability of Value B.

Normal (Gaussian)

The generated values will be drawn from the normal distribution whose mean/median is given by Middle Value, and whose standard deviation is given by Scale Around Middle.

Exponential

The generated values will be drawn from the exponential distribution whose median is given by Middle Value. The mean and the standard deviation are equal to the median divided by ln(2).

Log-Normal

The generated values will be drawn from the log-normal distribution whose median is given by Middle Value and whose standard deviation is given by Spread Around Middle. This distribution is useful for generating random scales, because its values are strictly positive, and it tapers off toward zero, helping avoid scales that are too small or negative.

The parameter μ, of the underlying normal distribution is ln(median). The parameter σ, of the underlying normal distribution is sqrt(ln(0.5*(1 + sqrt(1 + 4*(stddev*stddev)/(median*median))))).

Custom Discrete

The specified values will be sampled with the specified weights, i.e. unnormalized probabilities.

Uniform (Continuous)

Minimum

The minimum value that can be generated.

Maximum

The maximum value that can be generated.

Uniform (Discrete)

Minimum

The minimum value that can be generated.

Maximum

The maximum value that can be generated.

Step

The step between each possible value that can be generated. For example, to generate numbers only among {4, 6, 8, 10} you should set this parameter to 2, and set Minimum to 4, and set Maximum to 10.

Two Value

Value A

The first of the values that can be generated.

Value B

The second of the values that can be generated.

Probability of Value B

The likelihood that Value B will be generated. Increase this if you want to increase the number of occurences of Value B or if you want to decrease the number of occurences of Value A.

Normal

Middle Value

The median of the distribution. The region with the highest probability of generating numbers is around this parameter.

Scale Around Middle

The standard deviation of the distribution. Increase this if you want the randomly generated numbers to be more spread out from Middle Value.

Exponential

Middle Value

The median of the distribution. Increase this if you want the generated values to be larger and more spread out.

Log-Normal

Middle value

The median of the distribution. Increase this if you want the generated values to be larger.

Spread Around Middle

The standard deviation of the distribution. Increase this if you want the randomly generated numbers to be larger and more spread out from Middle Value.

Custom Discrete

Number of Values

The number of values to choose from when generating the random attribute.

Value

One of the possible values that can be generated.

Weight

The unnormalized probability of the corresponding value being chosen. Increase this if you want a larger chance of the value being selected.

Limit Options

Minimum Limit

If enabled, any generated numbers less than this value, will be set to this value.

This option is only available for the Normal, Exponential, and Log-Normal random distributions.

Maximum Limit

If enabled, any generated numbers greater than this value, will be set to this value.

This option is only available for the Normal, Exponential, and Log-Normal random distributions.

Options

Sorted

If enabled, the contents of the array will be sorted order.

Reversed

If enabled, the contents of the array will be reversed.

Log Data Statistics

If enabled, each work item will log the mean, median, and standard deviation of the generated data. Use this if you want numerical summaries of the generated data and you are okay with a small increase in computation time.

See also

TOPノード

  • Attribute Array

    ワークアイテム上に配列アトリビュートを作成/変更します。

  • Attribute Copy

    あるブランチのワークアイテムのアトリビュートを他のブランチのワークアイテムにコピーします。

  • Attribute Create

    入力のワークアイテムすべてに対してアトリビュートを作成または設定します。

  • Attribute Delete

    ワークアイテムからアトリビュートを削除します。

  • Attribute Promote

    ワークアイテム、グローバルアトリビュート、出力ファイルとの間でアトリビュートとフィールドをコピーします。

  • Attribute Randomize

    Create randomly-generated integer and float attributes on work items.

  • Attribute Reduce

    配列アトリビュート値を単一値に下げます。

  • Attribute Rename

    ワークアイテム上のアトリビュートの名前を変更します。

  • Attribute from File

    Parses attribute values from a file into work items.

  • Attribute from String

    ファイル名などの文字列からアトリビュート値を解析します。

  • Block Begin Feedback

    For-Loop with Feedbackブロックを開始します。このブロック内のTOPノードは直列で実行され、オプションで入力のワークアイテム毎にループさせることができます。

  • Block End Feedback

    For-Loop with Feedbackブロックを終了します。このブロック内のTOPノードは直列で実行され、オプションで入力のワークアイテム毎にループさせることができます。

  • CSV Input

    CSVファイルのデータをワークアイテムのアトリビュートにコピーします。

  • CSV Output

    ワークアイテムのアトリビュートをCSVファイルに書き出します。

  • Deadline Scheduler

    Thinkbox社のDeadlineソフトウェア用PDGスケジューラ。

  • Download File

    1つ以上のURLからコンテンツをファイルにダウンロードします。

  • Environment Edit

    ワークアイテムのコマンドラインが実行する環境下で設定する変数を編集します。

  • Error

    条件が満たされた時に警告またはエラーを出します。

  • FFmpeg Encode Video

    静止画像シーケンスを動画に変換します。

  • FFmpeg Extract Images

    動画ファイルから静止画像シーケンスを抽出します。

  • File Compress

    ファイルをアーカイブに圧縮します。

  • File Copy

    実行時またはノードがファイルを生成した時に、ファイルをある場所から別の場所にコピーします。

  • File Decompress

    入力のワークアイテムで指定されたアーカイブファイルを個々のファイルに解凍します。

  • File Pattern

    特定のパターンに合致したファイルに基づいてワークアイテムを生成します。

  • File Range

    特定のファイルパターンに基づいたフレーム範囲からワークアイテムを生成します。

  • File Remove

    指定したパスのファイルを削除します。

  • File Rename

    ファイルを名前変更または移動させます。

  • Filter by Attribute

    Filters upstream work items by their attribute names or values

  • Filter by Expression

    上流のワークアイテムを条件付きでフィルタリングします。

  • Filter by Range

    指定したフレーム内またはアトリビュート範囲内にある上流のワークアイテムを絞り込みます。

  • Filter by State

    上流のワークアイテムをその状態によってフィルタリングします。

  • Generic Generator

    アトリビュートなしでコマンドラインを実行するワークアイテムを生成します。

  • Geometry Import

    SOPまたはジオメトリファイルのポイントまたはプリミティブをワークアイテムアトリビュートまたは一時ファイルに読み込みます。

  • HDA Processor

    デジタルアセットをクックするワークアイテムを生成します。

  • HQueue Scheduler

    HQueueを使用してワークアイテムのスケジュールを組みます。

  • Houdini Block Begin

    Houdiniサービスブロックを開始します。

  • ImageMagick

    一括で画像変換、サイズ変更、画像モザイクなどのImageMagickの機能に簡単にアクセスすることができます。

  • In Process Scheduler

    In-Processワークアイテムのスケジューリングを制御します。

  • Invoke

    入力ジオメトリに対してコンパイルブロックを呼び出します。

  • JSON Input

    JSONファイルからデータを抽出してアトリビュートを作成します。

  • JSON Output

    JSON出力を生成する色々なオペレーションを実行します。

  • Labs Archive Project

    現行HIPファイルの依存関係を収集してアーカイブ(書庫)にするユーティリティTOP。

  • Labs Concatenate Text

    複数のテキストファイルを単一ファイルに結合します。

  • Labs Cut Geometry to Partitions

    入力ジオメトリを分割します。

  • Labs Data Diff

    様々なジオメトリ、テキスト、画像ファイルを比較します。

  • Labs Extract Image Metadata

    iinfoを使用して画像メタデータを抽出します。

  • Labs Extract Image Metadata

    Extracts image metadata, such as the resolution, bit depth, color model, etc.

  • Labs File Cache Filter

    ファイルのキャッシュ化で使用されるワークアイテムを分割します。

  • Labs File Cache Partitioner

    ファイルキャッシュの範囲とWedge値に基づいてワークアイテムを分割/生成します。

  • Labs Filter by Value

    特定のアトリビュート値で1つ以上のワークアイテムをフィルタリングします。

  • Labs Filter by Value

    指定したアトリビュート値で複数のワークアイテムをフィルタリングします。

  • Labs Generate from Imageplanes

    画像内に見つかった画像平面に基づいてワークアイテムを生成します。

  • Labs Wedge

    アトリビュート値を可変させてワークアイテムを生成します。

  • Local Scheduler

    ローカルマシン上でワークアイテムのスケジュールを組みます。

  • Make Directory

    ディレクトリを作成します。

  • Maya Server Begin

    持続型Mayaコマンドサーバーを起動します。

  • Merge

    上流のすべてのワークアイテムを結合します。

  • Node Pattern

    マッチしたノードに基づいてワークアイテムを生成します。

  • Nuke Server Begin

    持続型Nukeコマンドサーバーを開始します。

  • Null

    何もしません。

  • OP Notify

    何かしらのTOPワークが完了したことを通知します。

  • OpenImageIO

    Provides easy access to the OpenImageIO’s command line tool, also known as oiiotool, to perform operations on images such as color space conversion, color mapping, resizing, text overlay, and box overlay.

  • Output

    サブネット出力。

  • Partition by Attribute

    アトリビュートに基づいてワークアイテムを区分けします。

  • Partition by Bounds

    境界アイテムを使って、ソースアイテムを空間的に区分けします。

  • Partition by Combination

    ワークアイテムを2個毎、3個毎などに区分けします。

  • Partition by Comparison

    既存の比較を使ってワークアイテムを区分けします。

  • Partition by Expression

    エクスプレッションに基づいてワークアイテムを区分けします。

  • Partition by Frame

    フレームに基づいてワークアイテムを区分けします。

  • Partition by Index

    インデックスに基づいてワークアイテムを区分けします。

  • Partition by Iteration

    フィードバックループの反復に基づいてワークアイテムを区分けします。

  • Partition by Node

    ノードに基づいてワークアイテムを区分けします。

  • Partition by Range

    範囲に基づいてワークアイテムを区分けします。

  • Partition by Tile

    軸に平行な境界ボックスを使ってワークアイテムを空間的に区分けします。

  • Perforce

    PDG経由でPerforceコマンドを実行します。

  • Python Block Begin

    Pythonサービスブロックを開始します。

  • Python Partitioner

    Pythonスクリプトを使ってワークアイテムを区分けします。

  • Python Processor

    Pythonスクリプトを使ってワークアイテムを生成します。

  • Python Scheduler

    Pythonベースでプログラミング可能なPDG用スケジューラ。

  • Python Script

    Pythonスクリプトを実行するワークアイテムを生成します。

  • Python Virtual Environment

    Creates a Python virtual environment using TOPs

  • ROP Alembic Output

    埋め込まれたROP Alembic ROPノードをクックするワークアイテムを生成します。

  • ROP Composite Output

    埋め込まれたComposite ROPノードをクックするワークアイテムを生成します。

  • ROP FBX Output

    埋め込まれたFBX ROPノードをクックするワークアイテムを生成します。

  • ROP Fetch

    ROPノードまたはROPネットワークをクックするワークアイテムを生成します。

  • ROP Geometry Output

    埋め込まれたGeometry ROPノードをクックするワークアイテムを生成します。

  • ROP Karma Render

    埋め込まれたKarma ROPノードをクックするワークアイテムを生成します。

  • ROP Mantra Render

    埋め込まれたMantra ROPノードをクックするワークアイテムを生成します。

  • ROP OpenGL Render

    Creates work items that cook an embedded OpenGL ROP node

  • ROP USD Output

    組み込まれたUSD ROPノードをクックするワークアイテムを作成します。

  • Range Extend

    上流のワークアイテムのフレーム範囲を広げて、必要に応じて新しいワークアイテムを追加します。

  • Range Generate

    指定した範囲のワークアイテムを生成します。

  • Remote Graph

    Connected to a remotely executing TOP graph and displays the nodes from that graph

  • Render IFD

    Mantraを使ってIFDファイルをレンダリングするワークアイテムを生成します。

  • SQL Input

    SQLクエリの作成と行毎にワークアイテムを生成する入力ノードです。

  • SQL Output

    SQL INSERTクエリを生成する出力ノードです。

  • Send Email

    電子メールを送信します。

  • Service Block End

    サービスブロックを終了します。

  • Service Block Send

    実行させたいコードをサービスブロックに送信します。

  • Service Create

    PDGサービスを作成します。

  • Service Delete

    PDGサービスを削除します。

  • Service Reset

    PDGサービスをリセットします。

  • Service Start

    PDGサービスを起動します。

  • Service Stop

    PDGサービスを停止します。

  • ShotGrid Create

    ShotGridエンティティを作成します。

  • ShotGrid Delete

    ShotGridからエンティティを削除します。

  • ShotGrid Download

    ShotGridからAttachmentをダウンロードします。

  • ShotGrid Find

    ShotGridエンティティを検索します。

  • ShotGrid Server Begin

    持続型ShotGridコマンドサーバーを起動します。

  • Shotgun Update

    Shotgunエンティティを更新します。

  • Shotgun Upload

    Shotgunにファイルをアップロードします。

  • Sort

    アトリビュートのリストからワークアイテムを並べ替えます。

  • Split

    上流のワークアイテムを2つのグループに分けます。

  • Split by Count

    Splits upstream items into two using a fixed count

  • Subnetwork

    TOPノード用コンテナ。

  • Switch

    ネットワーク分岐を切り替えます。

  • TOP Fetch

    他のTOPネットワークをクックします。

  • TOP Fetch Input

    TOP Fetchで取得したネットワークの入力。

  • Text Output

    テキストを新しいファイルに書き出したり、既存ファイルに書き足します。

  • Tractor Scheduler

    PixarのTractorを使ってワークアイテムのスケジュールを組みます。

  • URL Request

    URLからデータを要求するワークアイテムを作成します。

  • USD Add Assets to Gallery

    USDアセットをAsset Galleryに追加します。

  • USD Analyze

    Fetches metadata, dependencies, and external references for a LOP Node or file.

  • USD Import Data

    USDステージで見つかったPrimsからワークアイテムを生成します。

  • USD Import Files

    USDステージで見つかったファイル参照からワークアイテムを作成します。

  • USD Modify Paths

    Modify asset path attribute values.

  • USD Render Files

    USDファイルを書き出すワークアイテムを作成します。

  • USD Render Scene

    Creates work items that render a USD file or LOP network

  • Wait for All

    上流のワークアイテムすべてが完了するのを待ちます。

  • Wedge

    アトリビュート値を色々と変えながらワークアイテムを生成します。

  • Work Item Expand

    ファイルリストまたはパーティションを複数のワークアイテムに展開します。

  • Work Item Import

    .jsonファイルまたは他のTOPノードからワークアイテムを取り込みます。

  • Xml Input

    XMLファイルからデータをワークアイテムアトリビュートに抽出します。