Forgot your password?   Click here   •   No account yet?   Please Register    •   Or login using  
JA ログイン
SideFX Homepage
  • 製品
    • H20.5 新機能
      • 概要
      • VFX
      • Copernicus
      • Animation
      • Rigging
      • Lookdev
    • Houdini
      • 概要
      • FX 機能
      • CORE 機能
      • Solaris
      • PDG
    • Houdini Engine
      • 概要
      • Engine プラグイン
      • バッチ処理
    • Karma Renderer
    • 製品比較
    • SideFX Labs
    • Partners
  • 業界
    • Film & TV
    • ゲーム開発
    • モーショングラフィクス
    • Virtual Reality
    • AI/ML 向けデータ合成
  • コミュニティ
    • フォーラム
    • ニュース
      • 概要
      • カスタマ ストーリー
      • Houdini HIVE Events
      • Contests & Jams
    • Gallery
    • イベントカレンダー
    • User Groups
    • Artist Directory
  • 学習
    • Start Here
      • 概要
      • My Learning
      • ラーニングパス
      • チュートリアル
    • コンテンツライブラリ
    • Tech Demos
    • Houdini 講演
    • 教育プログラム
      • 概要
      • 学生
      • 講師
      • 管理者
      • List of Schools
      • 学習リソース
  • サポート
    • カスタマーサポート
    • Licensing
      • 概要
      • Commercial
      • Indie
      • Education
    • ヘルプデスク FAQ
    • Houdini システム環境
    • ドキュメント
    • Changelog / Journal
    • Report a Bug/RFE
  • Get
    • Try
    • 購入
    • ダウンロード
    • お問い合わせ
 
Advanced Search
Forums 検索
Found 1209 posts.

Search results Show results as topic list.

Technical Discussion » Import NetCDF (.nc) file?

User Avatar
symek
1390 posts
Offline
 2017年9月8日 17:39:12
There seems to be Python package [unidata.github.io] which might be your best option without diving into C++.

Houdini Python module inside PythonSOP allows you to create volume primitive via hou.Gometry.createVolume(), which further on allows you to set all voxels value via setAllVoxelsFromString(). You can feed it with binary string taken from numpy array, which - from a brief look into docs - can be provided by netcdf4-python.

Also Houdini used to support HDF5 format, which is currently standard container for netcdf files. Not sure how it'd behave on trying to import it directly though.

I'm not sure what kind of data you're trying to use, but Excel might be little intimidated with volume of data typical for HDF5 files…
Edited by symek - 2017年9月8日 17:43:43
See full post 

Houdini Lounge » Biharmonic Point Deform SOP

User Avatar
symek
1390 posts
Offline
 2017年8月2日 08:40:33
Great example, thank you.
See full post 

Technical Discussion » Anyone know how to use 'Houdini Engine Procedural: Point Generate'?

User Avatar
symek
1390 posts
Offline
 2017年8月2日 07:01:16
http://forums.odforce.net/topic/30762-anyone-know-how-to-use-houdini-engine-procedural-point-generate/ [forums.odforce.net]
See full post 

Technical Discussion » HDK: a few questions

User Avatar
symek
1390 posts
Offline
 2017年7月28日 20:28:17
mootzoid
1. How can one determine whether Houdini is running in interactive mode (i.e. with the UI) or in batch mode?

#include<HOM/HOM_Module.h>
...
HOM_Module &hou = HOM();
if (hou.isUIAvailable()) ...
See full post 

Technical Discussion » generate millions particles at rendertime

User Avatar
symek
1390 posts
Offline
 2017年7月27日 12:19:37
Modern version of point replicate procedural is HEngine: Point Generation

http://www.sidefx.com/docs/houdini/nodes/vop/enginepointgen [www.sidefx.com]
See full post 

Technical Discussion » One frame per CPU core?

User Avatar
symek
1390 posts
Offline
 2017年4月12日 20:17:05
You probably won't see any advantage nowadays in raytrace nor PBR mode (due to its almost perfect threading). Micropolygon may run faster (it definitely used to).
See full post 

Houdini Lounge » SOS

User Avatar
symek
1390 posts
Offline
 2017年4月8日 09:43:03
At some point every good software has to obsolete some features to make room for a new one. Having a courage to that and go forward is the signature of great developers. Shell I mention by name an opposite examples in our industry?

It is funny that it's usually easier to expect our tools change to accommodate our needs, than us to accommodate to those changes…

Frankly speaking it took me a year to get used to wranglers, leaving behind a temptation to put $variables everywhere, 15 years of muscle memory, but those changes are totally worth an effort.
See full post 

Houdini Lounge » Real-Time Graphics in Pixar Film Production

User Avatar
symek
1390 posts
Offline
 2016年9月9日 07:20:25
Interestingly enough, new release of Metal form Apple is already supporting USD geometry . It can have bigger impact, than just film industry.
See full post 

Technical Discussion » Min/Max values of a COP

User Avatar
symek
1390 posts
Offline
 2016年8月30日 05:53:23
You could use Image Chop [sidefx.com] and MathChop to get min/max values from an image or use Python and numpy:

node =  hou.node("/img/comp1/file1")
pixels = numpy.frombuffer(node).allPixelsAsString("C"), dtype=numpy.float32).reshape(node.xRes(), node.yRes(), 3).copy()
pixels.min()
pixels.max()

but if the only objective is to check whether a channel is constant or not, you could use GradientCOP (normalize on), and ScaleCOP set to 2x2 pixels and point filter (or box would be saver?). You have 4 pixels in total. Any non constant image will have at least one pixel non-black. All black == image was constant.
Edited by symek - 2016年8月30日 05:58:11
See full post 

Technical Discussion » OIIO support?

User Avatar
symek
1390 posts
Offline
 2016年8月5日 04:37:18
Nope, it doesn't. I think that would require dropping Houdini's own image dso to avoid library clashing.

I imagine Mantra texture subsystem could support natively tiled EXR as a minimal consensus. Last time I've checked any non-RAT file is silently converted to RAT on load. RAT texturing used to be years ahead of many renderers' one, it would be a pity to drop it.

btw, does OIIO cache localize textures per tile when they drop-off the RAM quota?
See full post 

Technical Discussion » 15.5.480 -unable to compile toolkit/samples/field3d

User Avatar
symek
1390 posts
Offline
 2016年7月22日 14:14:45
which g++
points to correct compiler too? I remember at some point newer gcc on CentOS6.x had similar problem, shell was reporting good compiler, but CMake was using old one (might confuse some details now). You could create Makefile and include $HT/makefiles/Makefile.gnu as described in docs. There are variables to overwrite CC and linker manually there.
See full post 

Houdini Lounge » Network Rendering with Backburner

User Avatar
symek
1390 posts
Offline
 2016年7月21日 15:14:54
Anti-Distinctlyminty
Hi all,
Our network rendering manager is Backburner. I was looking into setting up Mantra rendering, but I can find absolutely nothing about this. Does anyone know if this is possible or if there are any resources out there concerning this?


It's definitely possible and not specially difficult, though requires some scripting. Rendering from Houdini is two step process.

1) Generate *.ifd files for mantra with hscript or hython or hrender script provided with Houdini.
2) Spawn mantra renders using previously generated ifd files.

Once you know these two commands you may send it to Backburner via batch command job (cmdjob.exe).
Some readings here [sidefx.com] and here [sidefx.com] and back burner specific here [codecg.com]

I kinda roll a peace of middleware [github.com] which theoretically should work with Houdini and Backburner, but neither Backburner nor Windows support was tested (honesty Windows branch was only touched, and was roughly tested with Nuke).
Edited by symek - 2016年7月21日 15:18:02
See full post 

Technical Discussion » 15.5.480 -unable to compile toolkit/samples/field3d

User Avatar
symek
1390 posts
Offline
 2016年7月21日 14:43:56
I'm not sure if Houdini 15.5 officially requires C++11 (probably not since 4.8 is first version fully compliant with it), but gcc 4.4 doesn't support nullptr for example. If I'm not mistaken gcc 4.6 is the oldest working version out of the box (at least for 15.0 it was true). You may try to tune gcc flags (like -std=c++11), but it's pure speculation. On the other hand CentOS6.8 should work with gcc 4.7 rather painlessly [access.redhat.com].
See full post 

Technical Discussion » 15.5.480 -unable to compile toolkit/samples/field3d

User Avatar
symek
1390 posts
Offline
 2016年7月21日 11:57:52
What Linux is it? Smells like complier issue (no c++11?) What version of gcc?

(it works fine on CentOS 7.1)
See full post 

Technical Discussion » Creation of new custom Operator Type OTL/HDA using hython ?

User Avatar
symek
1390 posts
Offline
 2016年7月20日 15:56:22
You mean like:
parent = hou.node("/obj")
subnet = parent.createNode("subnet")
subnet.createDigitalAsset(name="myAsset", hda_file_name="./myAsset.hda", ...)

?
See full post 

Technical Discussion » HDK - Always cook node

User Avatar
symek
1390 posts
Offline
 2016年7月19日 08:04:52
There are flags in OP_Node you can set to hint Houdini about cooking. The safest is probably:
OP_Node::flags().setTimeDep(1);


- http://www.sidefx.com/docs/hdk15.5/_o_p___node_flags_8h_source.html [sidefx.com]
Edited by symek - 2016年7月19日 08:05:26
See full post 

Houdini Lounge » DEM data to Houdini?

User Avatar
symek
1390 posts
Offline
 2016年6月27日 07:31:50
jordibares
An optimised approach is the key to it of course, a bit like Vue where you never see the terrain in full resolution but a base rough resolution, then at render time it kicks the next levels as displacement.

I would love to have that kind of functionality right inside Houdini and apply geological filters like erosion, accumulation of debris, etc..

Could you specify briefly how such functionality / workflow inside SOPs should look like?
See full post 

Work in Progress » C++ Wrangle: The Last Frontier In Custom Tool Development From Within Houdini

User Avatar
symek
1390 posts
Offline
 2016年6月18日 17:49:41
I'm also disappointed with the lack of assembler

Is it a wrapper of Python SOP With inlineccp or something else?
See full post 

Technical Discussion » sin expression with gap ?

User Avatar
symek
1390 posts
Offline
 2016年6月16日 11:36:29
 if (sin($F) < 0, 0, sin($F)) ?

or if you regret double sin() evaluation

{
   float s = sin($FF);
   if (s < 0)
      return 0;
   return s;
}

although I don't believe it's a big issue here

…or clamp as mentioned bellow
Edited by symek - 2016年6月16日 11:39:20
See full post 

Technical Discussion » Normal Booleans?

User Avatar
symek
1390 posts
Offline
 2016年6月16日 07:21:22
What do you mean by “normal booleans”?
See full post 
  • 最初
  • 1
  • 2
  • 3
  • 4
  • 最後
  • Quick Links
Search links
Show recent posts
Show unanswered posts
製品
  • Houdini
  • Houdini Engine
  • Houdini Indie
学習
  • Houdini 講演
  • 教育プログラム
サポート
  • カスタマーサポート
  • ヘルプデスク FAQ
  • ドキュメント
  • Report a Bug/RFE
  • Sales Inquiry
LEGAL
  • Terms of Use (英語)
  • Privacy Policy (英語)
  • License Agreement (英語)
  • Accessibility (英語)
  • Responsible Disclosure Program
COMPANY
  • SideFX社について
  • Careers
  • Press
  • Internships
  • お問い合わせ
Copyright © SideFX 2025. All Rights Reserved.

使用言語