Forgot your password?   Click here   •   No account yet?   Please Register    •   Or login using  
JA ログイン
SideFX Homepage
  • 製品
    • Houdini 18.5 新機能
    • Houdini
      • 概要
      • FX 機能
      • CORE 機能
      • Solaris
      • Houdini Indie
    • Houdini Engine
      • 概要
      • Engine プラグイン
      • バッチ処理
    • PDG
      • 概要
      • FAQ
    • 比較
    • SideFX Labs
      • 概要
      • SideFX Labs ツールリスト
    • Partners
  • 業界
    • Film & TV
    • ゲーム開発
    • モーショングラフィクス
    • Virtual Reality
  • コミュニティ
    • フォーラム
    • ニュース
    • カスタマ ストーリー
    • Gallery
    • Contests & Jams
    • Houdini HIVE Events
    • イベントカレンダー
    • Worldwide HUG
  • 学習
    • Getting Started
    • ラーニングパス
    • チュートリアル
    • Houdini 講演
    • 学校紹介
    • 教育プログラム
      • 概要
      • 学生
      • 講師
      • 管理者
  • サポート
    • Customer Support
    • ヘルプデスク FAQ
    • Houdini システム環境
    • ドキュメント
    • Changelog / Journal
    • Report a Bug/RFE
  • Get
    • 購入
    • Download
    • Content Library
    • お問い合わせ
 
Advanced Search
Forums 検索
Found 102 posts.

Search results Show results as topic list.

Technical Discussion » IOR vs Reflectivity ? Transparency vs Opacity?

User Avatar
jpparkeramnh
178 posts
Offline
 2020年3月3日 11:07:28
The way I see opacity, is that it is a rendering shortcut for materials that are assumed to have holes in them that are too small too see. The amount of opacity is inverse to the porousness of the surface / volume.
See full post 

Technical Discussion » Gradient Fall-off Volume

User Avatar
jpparkeramnh
178 posts
Offline
 2020年2月26日 12:04:49
tapoh
thanks! and how this can be achieved along all three axes x,y,z?

Without testing, probably like:
@density = 1 - length(relbbox(@P));
See full post 

Technical Discussion » Fastest way to write data out of node?

User Avatar
jpparkeramnh
178 posts
Offline
 2020年2月11日 10:50:55
I assume you need the individual curves to be known… otherwise you can grab an entire attribute efficiently using functions like this one:

http://www.sidefx.com/docs/houdini/hom/hou/Geometry.html#pointFloatAttribValuesAsString [www.sidefx.com]
See full post 

Technical Discussion » H17.5 packed disk performance: hours-long mantra init time

User Avatar
jpparkeramnh
178 posts
Offline
 2020年2月10日 15:31:03
Could this be because mantra doesn't do nested procedurals?
See full post 

Technical Discussion » xform from external file

User Avatar
jpparkeramnh
178 posts
Offline
 2020年2月6日 13:19:33
If you want a Houdini way to extract the matrix, you can try using the “Extract Transform” OBJ node, as long as the topology is the same between the objects.
See full post 

Solaris » ggx bsdf function

User Avatar
jpparkeramnh
178 posts
Offline
 2020年1月16日 23:07:43
Great to know that CVEX BSDF code will still be supported in Karma. Sometimes just being able to hack something shot specific into a BSDF via VEX is more valuable than absolute performance.

That said, will there be a public API to create custom C++ BSDFs?
See full post 

Technical Discussion » How Hscript and Expressions are different?

User Avatar
jpparkeramnh
178 posts
Offline
 2020年1月5日 22:57:54
Ah when I say shell, I mean how you would type in a Linux (or Mac) command line terminal.
See full post 

Technical Discussion » How Hscript and Expressions are different?

User Avatar
jpparkeramnh
178 posts
Offline
 2020年1月4日 15:57:41
I “rediscovered” Hscript a little bit recently when using it to run Houdini in terminal mode instead of Hython. As a shell-like experience I find it nicer than using Python as the syntax is cleaner and easier to type, for example when listing the contents of a network and rendering:

Python:
o = hou.node('/out')
print o.children()
o.node('mantra1').render()


Hscript:
cd /out
ls
render mantra1
See full post 

Technical Discussion » H17.5 packed disk performance: hours-long mantra init time

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月27日 15:26:59
I've not had to do this in the past yet, so I might be missing something easy…

So I have a scene with a particle simulation that repeats along the edges. It has 9 million points. I'm creating about 3000 packed copies of it in a tiling pattern. When the points are just points (spheres) I can render it quickly and with low memory.

So now I want to replace each point with a packed disk prim, with a total variety of about 100 packed disk items. And when I do that, I wait hours before even seeing the first bucket.

So take a step back, and I render just one simulation copy with the packed disks instanced to each point, and the render time of that is reasonable.

Is there a way to make the full nested setup work quickly?
See full post 

Technical Discussion » VEX point cloud masterclass / tips?

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月22日 23:35:26
Thanks all, appreciate the reply. There's no free lunch here… and no substitute for a lack of free time to play around with the functions myself.
See full post 

Technical Discussion » VEX point cloud masterclass / tips?

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月19日 15:55:16
tamte
I think Jon means functions like pcopenlod() and pcsampleleaf() which can speed up point cloud queries
https://www.sidefx.com/docs/houdini/vex/functions/pcopenlod.html [www.sidefx.com]
https://www.sidefx.com/docs/houdini/vex/functions/pcsampleleaf.html [www.sidefx.com]

I have seen them being used in the shading context, however never used them myself

Yes, exactly… Jeff Wagner talks about pgfind in his VEX masterclass and touches on point clouds a little bit, but sometimes it's hard to creatively imagine novel uses for these. I'm guessing a lot of them were added with specific use cases in mind.

Some sort of example page with snippets for each would be fun to create some day. (Matt Estela? )
See full post 

Technical Discussion » VEX point cloud masterclass / tips?

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月18日 22:58:32
srletak76
Only thing that you need to know about Houdini it's this
Than just combine
https://www.youtube.com/watch?v=dq5B3TeFeL8 [www.youtube.com]

Sorry but I didn't see anything about the point cloud specific VEX function that I mentioned. I'm not a beginner by any stretch of that word.
See full post 

Technical Discussion » VEX point cloud masterclass / tips?

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月17日 22:27:47
Often, for common point lookup tasks, for the sake of ease, when I want to look up point info I just use the nearpoint() function or just a simple pcopen() followed by pcfilter(). I've also used pciterate and the other related functions for occasional purposes.

But there are a lot of point cloud functions I never use, and because they exist, they must be useful. Ideally I'd want to find out which ones will make my point lookups as fast as possible.

Are there any pro-level tutorials that go over them with examples anywhere?

Cheers,

Jon
See full post 

Technical Discussion » Houdini 6.5 questions :)

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月15日 21:40:54
My favorite thread of the month!
See full post 

Houdini Lounge » Karma roadmap

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月13日 09:58:21
rmagee
We have just posted a comparison of Karma and Mantra in the FAQ section to show you where all the features stand at the moment:

https://www.sidefx.com/faq/karma/ [www.sidefx.com]

This is great, thanks!
See full post 

Houdini Lounge » Future of Mantra

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月7日 15:16:11
Midphase
BrianHanke
Renderman seems nice, but it has some seriously janky elements compared to Mantra


What don't you like about Renderman?

Since they took away SL, a lot of constraints were added that are still possible in VEX. Here are a couple more:

- No closure support in OSL, so mixing BSDFs is a pain. Try mixing multiple volume phase functions in RenderMan…
- Looking up arbitrary geometry attributes is also a pain (primuv, pcfind, etc.).
- Not being able to create lens shaders with a shading language.
See full post 

Technical Discussion » Houdini Packages

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月4日 00:40:16
I've written some pipeline tools that do a lot of things that the Houdini package format is supposed to do, but for any software environment one would want to configure. As long as the necessary Houdini environment variables are being automated in some other way, is there any reason to switch?
See full post 

Technical Discussion » Karma procedural shading — Bugs, Quirks, Feedback

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月1日 22:11:33
jsmack
It's expected that dirt/occlusion masks don't work with Karma. trace/gather are not allowed in Karma.
That just makes me sad. There are plenty of real production use cases where one would want to send out rays to probe the scene that don't fall into the BSDF domain.

Even OSL still supports trace() functions.
See full post 

Technical Discussion » Houdini 18 Karma Custom Fisheye Lens Shader Revisited

User Avatar
jpparkeramnh
178 posts
Offline
 2019年12月1日 21:59:17
Jeroen,

I just missed entering the beta and we would have expected the same capability at AMNH. Probably like you, we use mantra because of its extreme flexibility that other renderers (I'm looking at you Pixar!) have eschewed over recent years, but are a necessity to do special format rendering of non-standard topics, for example rendering super computer simulations that are structured unlike typical VFX assets… ie, spherical volumes, massive particle counts, etc.

Having not been able to explore Karma and LOPs yet I'm hoping we can push our tools forward to take advantage of it,as long as the flexibility in rendering is still there.

Cheers,
Jon
See full post 

Technical Discussion » CHOPS frame offset

User Avatar
jpparkeramnh
178 posts
Offline
 2019年11月20日 12:58:09
The “lookup” CHOP will do that and fancier things too, or you can use a CHOP expression in the Shift node to look up the first sampled frame index.
See full post 
  • 最初
  • 1
  • 2
  • 3
  • 4
  • 最後
  • / 6
  • Quick Links
Search links
Show recent posts
Show unanswered posts
製品
  • Houdini
  • Houdini Engine
  • PDG
学習
  • ラーニングパス
  • チュートリアル
  • Houdini 講演
  • 学校紹介
  • 教育プログラム
サポート
  • Customer Support
  • ヘルプデスク FAQ
  • ドキュメント
  • Report a Bug/RFE
  • Sales Inquiry
LEGAL
  • Terms of Use (英語)
  • Privacy Policy (英語)
  • License Agreement (英語)
  • Accessibility (英語)
  • Responsible Disclosure Program
COMPANY
  • SideFX社について
  • Press
  • T-Shirt Store
  • Careers
  • Internships
  • お問い合わせ
Copyright © SideFX 2021. All Rights Reserved.

Choose language