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

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

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