Advertisement
junh1024

LogoCleanup

Sep 7th, 2013
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. h=height(last)
  2. w=width(last)
  3. Left=600#offset for redenoiseregion
  4. Top=420#offset for redenoiseregion
  5. TL=last.crop(0,0,-(w-Left),(Top-h))
  6. TR=last.crop(Left,0,0,(Top-h))
  7. BL=last.crop(0,Top, -(w-Left),0)
  8. BR=last.crop(Left,Top, 0,0 ).dfttest(sigma=8,threads=2)#redenoiseregion move to any applicable region above
  9. stackvertical(stackhorizontal(TL,TR),stackhorizontal(BL,BR))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement