Example #1
0
        public void save_image(string filename, PyImage image)
        {
            string args = filename + ',' + image.ID;

            Base.ExectueObjMethod(this.ID, "save_image", args);
        }
Example #2
0
 public void tmo(PyImage input, PyImage output)
 {
     string args = input.ID + ',' + output.ID;
     Base.ExectueObjMethod(this.ID, "tmo", args);
 }
Example #3
0
        public void tmo(PyImage input, PyImage output)
        {
            string args = input.ID + ',' + output.ID;

            Base.ExectueObjMethod(this.ID, "tmo", args);
        }
Example #4
0
 public void save_image(string filename, PyImage image)
 {
     string args = filename + ',' + image.ID;
     Base.ExectueObjMethod(this.ID, "save_image", args);
 }