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

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

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