🎛️
TouchDesignerでRealsenseデバイスを扱う際のオプション指定
エミッタ切りたいんだけどRealsenseTOPのパラメータにそれ的なトグルないじゃん!と一瞬焦ったんですが、ちゃんとドキュメントに書いてありましたよ、という話です。
Options CHOP optionschop - Channels specified in this CHOP allow for setting all of the options that the RealSense camera supports. Channel names should be the same as the C enumeration, with the RS2_OPTION_ prefix removed, and all lowercase. E.g RS2_OPTION_ENABLE_AUTO_EXPOSURE can be set by using a channel named "enable_auto_exposure". A list of options can be found here.
RealsenseTOPのパラメータのOptions CHOP
に変更したいパラメータ名と値を書いたCHOP(例えばconstantCHOP)を渡せばOKでした。
オプションの名前リストはこちらにあって、これらからRS2_OPTION_
を除外して小文字にしたものを受け取るようです。
エミッタオンの状態(デフォルト)
エミッタオフの状態
Discussion