图像处理

来源:互联网 发布:php代码批量替换工具 编辑:程序博客网 时间:2024/06/09 01:36
1  剪裁的方式:
  1. 假设用region1  去组合region2   
  2. public enum Op {  
  3.         DIFFERENCE(0), //最终区域为region1 与 region2不同的区域  
  4.         INTERSECT(1), // 最终区域为region1 与 region2相交的区域  
  5.         UNION(2),      //最终区域为region1 与 region2组合一起的区域  
  6.         XOR(3),        //最终区域为region1 与 region2相交之外的区域  
  7.         REVERSE_DIFFERENCE(4), //最终区域为region2 与 region1不同的区域  
  8.         REPLACE(5); //最终区域为为region2的区域  
  9.  }  
0 0
原创粉丝点击