QUOTE(JorgeArango @ 09/15/06, 04:23 PM) [snapback]247594[/snapback]
I tried this and got this message:
-bash: shake: command not found
What could I have done wrong?
seems like your installation skipped the command line version ..
type:
which shake
and you should return something like:
/usr/bin/shake
also make sure that shake is is in your path:
$PATH
-bash: /bin:/sbin:/usr/bin:/usr/sbin:/Users/chris:
as for averaging frames, you can do this in the retime tab in the file in node, or you can bring back the average node that was stripped from the gui by putting the following file into your include/startup/ui folder:
CODE
nuiPushToolBox("Image");
nuiToolBoxItem("Average", " const char *fileName = getFileInName
(); fileName ? Average(fileName,1,5,1,3,1,1.5,1.0) : (image)0; ");
nuiPopToolBox();
nuiDefSlider("Average.sStart", 0, 100);
nuiDefSlider("Average.sEnd", 0, 100);
nuiDefSlider("Average.dStart", 0, 100);
nuiDefSlider("Average.dEnd", 0, 100);
nuiDefSlider("Average.gain", 0, 2);
nuiDefSlider("Average.scale", 0, 2);
+++ christoph ++