Hello --
After a long friday being very careful with what I type in, I have found that I can get a _javascript_ module to identify what kinda type its looking at. I have confirmed it could see a number type waiting on an input as well as a string. So I decided on trying to see what was on an input leading back to my kernel patch. I was pretty sure my syntax was ok - it had worked on all the other tests.
I could get "Object" back by just asking for inputs, but for input[0], home of the incoming pixel data from my core kernel, i got "undefined"
Thus question one below.
I am looking thru the programming guide for
filters at this time. What I am trying to accomplish was to take pixel input from my working core kernel and feed it to a patch ( either modified or unmodified ) to be converted to a number type. This was to be fed to the radius input of a Gaussian blur in order for the image to be blurred.
Is there an unmodified patch that takes in a pixel and outputs a number? Question 2; After a lot of looking, I cannot say I have found one.
One problem I have not yet brought up in all of this is one of my other MATLAB modules uses a full FFT/IFFT transform to perform bilateral filtering. I have read thru some convolution code on the net and I think I can wriggle it out
Q1: Is there anything special to be done in order to order for a QC( 2.1) _javascript_ patch to accept pixel data?
Q2: Is there an unmodified patch that takes in a pixel and outputs a
number?