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

            Base.ExectueObjMethod(this.ID, "save_image", args);
        }
예제 #2
0
파일: Tmo.cs 프로젝트: mario007/renmas
 public void tmo(PyImage input, PyImage output)
 {
     string args = input.ID + ',' + output.ID;
     Base.ExectueObjMethod(this.ID, "tmo", args);
 }
예제 #3
0
        public void tmo(PyImage input, PyImage output)
        {
            string args = input.ID + ',' + output.ID;

            Base.ExectueObjMethod(this.ID, "tmo", args);
        }
예제 #4
0
파일: Tmo.cs 프로젝트: mario007/renmas
 public void save_image(string filename, PyImage image)
 {
     string args = filename + ',' + image.ID;
     Base.ExectueObjMethod(this.ID, "save_image", args);
 }