Jump to content

Search the Community

Showing results for tags 'chop'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Lounge/General chat
    • Education
    • Jobs
    • Marketplace
  • Houdini
    • General Houdini Questions
    • Effects
    • Modeling
    • Animation & Rigging
    • Lighting & Rendering + Solaris!
    • Compositing
    • Games
    • Tools (HDA's etc.)
  • Coders Corner
    • HDK : Houdini Development Kit
    • Scripting
    • Shaders
  • Art and Challenges
    • Finished Work
    • Work in Progress
    • VFX Challenge
    • Effects Challenge Archive
  • Systems and Other Applications
    • Other 3d Packages
    • Operating Systems
    • Hardware
    • Pipeline
  • od|force
    • Feedback, Suggestions, Bugs

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Name


Location


Interests

  1. I wanted to ask for advice on combining two setups. One is using spectrum chop to displace the points of a line along P.y independently. The other one is a RBD bullet sim. A POP Wind is moving the fractured pieces of a box away from their original position. Using a time shift the sim's progression can be offset along the z axis and the offset is controlled by a chramp. Now I want the data from the the spectrum sop to instead of displace the points along P.y fit the amplitude from 0 to 1 and remap (?) it to the frame range of the pre-calculated sim, currently frame 1 to 50. I sorted the the simulation points along the z axis and would like to use the audio spectrum to drive their time offset, instead of the P.y. Need to figure out the maximum amplitude of the spectrum chop and fit it to the last frame of the sim? Attached is the .hip containing both setups and an audio file (royalty free track used by the tutorial creator of: Houdini CHOP Talk 3 Audio Processing 1 - Audio Spectrum https://www.youtube.com/watch?v=J754SLvE7BQ) The audio doesn't matter, I just wanted to provide anything.Downfall.wav The line's points are evenly spaced, but the bullet sim points obviously aren't, so I would like that to remain unchanged.. retimed_sim_1.mp4 retime_sim_with_chops.hiplc Downfall.wav
  2. How can we control the shape of a chramp (created in a point wrangle) with a spectrum chop and therefore animate the shape? I already posted a question related to this, but maybe it was worded confusingly or seemed difficult..as no one answered. So I am asking generally, alternative solutions are welcome.
  3. Hi, I'm searching for a way to apply some motion to a camera that already have a constraint. Just to clarify, my camera have a lookat constraint and I want to apply a "camera shake" after the lookat. I tried to use a noise and add it to my rotation xyz, and it to get applied, but due to the lookat happening just after, it doesn't do anything. Is there a thing that I'm missing or is it just impossible to combine both (wich seams weird to me) and I should animate my camera and recreate the "lookat" effect by hand just so I can apply my noise ? I hope that I'm understandable enough Here is my project setup, The camera is the SCENE_1_Cam_1 with the constraint in it and the noise is in the "motionfx" CHOP Network, in the network box also named "SCENE_1_Cam_1" Animatic.hiplc
  4. Greetings all! I'm a relative noob to Houdini and trying to replicate a CHOP network that was created a few years ago for a Lynda.com tutorial. I triple-checked and with the exception of frame-ranges, all my nodes and settings are identical to the original, though the one critical difference (presumably) seems to be that in some of the old network's nodes, the Mode is set to "Constant Range" instead of "Range" (node info comparison here). I can't find the place to change this setting - hoping some CHOP ninja can help! Here's ink to a reduced version of the original tutorial file: https://www.dropbox.com/s/zlj9uujmpkap46v/LyndaTutorial_Reduced.zip?dl=0 More importantly, below is a link to a file that contains the original CHOP network (copy/pasted from original file) next to my 'built from scratch' new CHOP network: https://www.dropbox.com/s/4k4rd01j1ja97a8/ForEach_old_vs_new.zip?dl=0 I rebuilt the network because the original was a .hipnc. In above-linked file, I've wired up some side-by-side node networks to show how the CHOP net should be working (works fine with the original) and how it's not working (with my rebuild). Attached is a jpg preview of what the network looks like - I'm ultimately trying to use the CHOP to drive an array of points up a surface. Preemptive thanks to any responders! NpF
  5. Hi there, I’m importing a rigged Character Creator 3 model into Houdini using the fbxcharacterimport node in Kinefx. The model has shape keys used to control facial expressions. In the geometry spreadsheet, these are showing up as primitive attributes. However, when I select the Rig Pose node, these each become detail attributes. My question is, how can I go about accessing these attributes, and using sliders on them to animate them in Kinefx? Or do I need to use chops in some way?
  6. A small experiment, where geometric models are turned into sound. More info about the process at ch3.gr/geophone I love the geometry CHOP node! =]
  7. Hi; I tried to make some animation using CHOPs based on a tutorial from "Peter Quint" (https://www.youtube.com/watch?v=4tGCG5u1jwI), but I got some problems with the rotation, so as you can see in the image below, my box rotation jumps on some frames, and it's starting rotation is wrong! How can I fix it? Thanks for helping. CHOPs animation_01.hip
  8. Hi; Please take a look at my scene, I tried to test a very basic CHOP setup, so I applied a wave node to a sphere to move it, but it doesn't work! How can I fix it? Thanks for helping. CHOPs.hip
  9. Hey, I've a chop network where I'm using a jiggle, I would like control a parameter of jiggle by a point attribute of my geometry. doing this I imported my parameter as channel scoping out from the jiggle operator and using in that parameter this expression chopi("px",$I) assuming to read the name of my channel (px) plus the index of that, or using cop("px", $I). but no one of these are working and I can not acces the index using $I. do you know how to resolve this? or even do you have any jiggle example in chop vex? thanks in anticipate.
  10. Hey guys ! I'm starting out in CHOP, so be gentle. I'm trying some things to get going, and already hit a roadblock. I got a geo node that I'm assigning the rx rotation from CHOP, adding a sin wave to it. Works well. But where I'm stuck is that I'm trying to add that same animation to a second geo node, but I want to add some sort of time offset between the two animations. So I'm thinking "Let's add a timeshift node under the constant, and use some kind of global variable (I believe $C ? Or @C ? unsure) to make a random number for each channel as an offset number !" Sooo, that didn't work. $C and @C doesn't return anything interesting (aka. not 0 or not erroring out). Maybe I understand this wrong ? If so I'm unsure as to how to use those global variables. Also, as a side note, I've seen chan[X-Y] being used sometimes in videos, but didn't find it in the help. Nevermind found it, gotta learn to use it now. It's in the Common parameter section of a lot of CHOP nodes. So ! Is the idea wrong ? How should I approach this ? Thanks in advance ! chop_timeoffset_test.hip EDIT : P.S. I've just noticed that in the help, it says When processing multiple channels, [...]. So I believe placing the timeshift under the math node would be more appropriate. But even doing so it stills errors out. Also, there's this - but I haven't been able to make it work. I tried the different combinations of Reference and Unit Values, to no avail.
  11. I am working grooming some curves/hairs and all the way below the chain is a chop node with noise inside a subnet, even do I bypass the subnet, every time I change something takes forever since the chops cook even do that I think they are off/bypass, all the frames =( is there a way to really by pass chops or just let them cook by frame so the scene??? is kinda annoying =(
  12. I have sim cache in linear timespace and a timewarp curve in .chan file from nuke, and I want to get difference of time change from it to use as a multiplier for increasing velocity in motion blur. For now I`m stuck on my on e solution: I use slope node on timewarp to calculate the differences in time change, but I`m not sure that this is a right solution. frame_camera_expChan.chan timewarp.hip
  13. Does anyone know how to read channels from CHOPs without jumping through the whole Geometry CHOP -> Channel SOP hoop? I have a CHOP network with 1 channel, and I want multiple objects to use the data in that channel in different ways. So instead of making a new CHOP network for each object, I'd like to just keep the one network and have the SOP networks go and "grab" the data as needed. Something like the 'chinput' VEX function but for SOPs would be perfect! I need to be able to grab the data at different times/samples depending on a point attribute, so the method of using a 'chop' expression wouldn't cut it. At the moment I've got a line with as many points on it as there are samples, then transferring the channel data over using the standard method, and then sampling the values from the points on that line. This method works, but feels quite clunky.
  14. I am in the process of setting up several camera rigs following the same piece of geometry with lagged "look at" constraints. The lagged Nulls I have made the camera "look at" only behave as they should up until frame 240, after which they stop moving completely, despite the scene length being 1000 frames. I have attached the .hip file, any suggestions are much appreciated. Thanks! CHOPsBug.hipnc
  15. Hello guys! i need to create a channel based on a table (csv file), the table looks like: (id can be ignored) id myvalue 1 509 2 514 3 519 4 524 5 529 6 534 7 540 8 544 9 550 10 555 i wish create a channel with a key value of 1 on every myvalue, and 0 in all other frames (basically a 0|1 toggle), this way: frame value 1 0 2 0 ... 509 1 510 0 ... 514 1 ... i try everything..but no sucess... any ideas??? thanks in advance!
  16. My latest commercial training in Houdini about using CHOPs in Procedural Animation , Hope you Like it more info here : http://www.hossamfx.org/chops-in-houdinifx/ Hossam aldin Alaliwi www.hossamfx.org kind regards !!!
  17. I am trying to animate an engine using chops and constraints. I manage to get something quiet close but it isn't accurate(cheat) My main issue is that i cannot find how to use a "look at" in conjunction with some restriction to force the tip of the arm to slide along the Y axis. I tried many other solution as well as trigonometry(which i am not very good at) which i gave up on. i also tried with bones but again my knowledge is close to none in houdini and i wasn't able to restrict bones I wish to achieve the real thing with your help Thank you piston.hip
  18. Hi! I have a CHOP channel containing some values and I would like to select only a few values at specific samples to then interpolate between them. I have attached a scene where the node `SAMPLES` needs to be used to select the values from `VALUE` to interpolate from. The node `DESIRED` represents the final result that I am after. I'm getting this result by manually creating constant values to interpolate from but it doesn't seem possible to do this procedurallly based on the nodes `VALUE` and `SAMPLES`? Also the process needs to be fast so I would like to avoid using `ic*` expressions if possible. Any idea? Thanks! chop_interpolate.hipnc
  19. Hey, could someone help me building this curve in chop ? I need a curve, a noisy curve with a positive slope. I managed to do that with a pulse (set up to get a positive slope) and adding a noise to it. But the final curve I need has to be like this : (never going down)
  20. Hi all, I'm trying to filter the jittery movement on dynamic geometry, so I thought CHOPs is the way to go. This generally works until points are deleted, when I noticed they flew off towards their start location. This is being caused by the fact that, when a channel is imported it's value reverts to it's start value for some reason. I cannot find any way to just make this value continue from the last good value just before the point was deleted. The reference image shows some channels where I point out when in time the point was deleted. Why on Earth does the channel then revert back to the start value after this point?
  21. Hi, I have two file nodes and I am animating a switch between the two at a certain frame. I am then taking the output to the speakers, but it doesn't seam to respect the animation of the switch and it just plays the first selection even if the waveform changes on the viewer. Is there a way to force it to update the audio on every frame? Any animation is also ignored when I save out the waveform to disk. Any ideas? thanks
  22. This is a WIP of what I've been doing on my spare time. Hope you like it! Comments and Critics most welcome
  23. Hi guys, I am still working on my boat and I would like to alter the animation. In the detail, I would like to "rotate" the boat a little faster when it hits a wave, so I think that the better way it would be to alter the "x" rotation (in orange). I would like to obtain the result you see in white. I think the way is to alter the channel values in the CHOP network but I don't know which function to apply or, if it is possible to manually alter the lines. I tried to use the "math" operator and multiply the values for 1.5 but it only increases the degrees of rotation and it's not what I want to achieve. Imagine a boat that gets a wave: it rotates up very fast, then "rests" and then when it hits the sea inverts the rotation and then rests again... Since my animation was created by the projection of the boat to the sea waves (with some filters and lags), it is too linear... Thank you for your help. Cheers! Lazza79
  24. Hi all, I have been using the Pipe In chop and recording it with the Record Chop. I am now trying to save the data as a '.bclip' by right clicking the record chop then, save data channels. I get to choose the location, name and type. But when I click accept is says 'save failed: unknown reason'. I have tried all the different formats and saving it from chops further down the line. Also switching on and off the export flag. Has anyone had a similar problem? Is it a licensing thing? Any help would be appreciated. Thanks.
  25. Hi! I'm currently having a big problem converting my tool into an OTL for use in Maya through the Houdini Engine. I use Chops in the tool and mainly the Foreach_Iteration node is giving me a hard time. I've already searched through quite some forums, but so far no luck. Also, so far, I haven't seen anybody else with the same problem. I've created a test file for this issue to show you whats going on. Mainly any tool, which uses the foreach chop, doesn't allow me to convert it into an OTL. The first error that I get is about the use of absolute paths. But when I fix this (delete the Export Prefx (../../..) in each chop node) I'm still getting a "Missing token" error: Error: Missing token : "{ subnet1/chopnet1/foreach1/Foreach_Iteration". Can someone help me with tackling this issue? Thanks in advance!! ChopsInOTLTest01.hipnc
×
×
  • Create New...