; smart-sharpening.scm version 1.00 Jan 07, 2004 ; ; script-fu-smart-sharpening - Smart sharpening of image. This script finds ; the edges of images and only sharpens those. ; ; You can find more about smart sharpening at ; http://www.gimpguru.org/Tutorials/SmartSharpening/ ; ; This plugin is made for Gimp-2.0 (1.3 works too). ; ; Changelog: ; 1.00 - initial release ; ; Copyright 2004 Olli Salonen ; (define (script-fu-smart-sharpening inImg inDrw inAmount inRadius inEdge) (let* ( (original inImg) (template (car (gimp-image-duplicate original))) (original-layers (cadr (gimp-image-get-layers inImg))) (template-layers (cadr (gimp-image-get-layers template))) (template-bg-copy (car (gimp-layer-copy (aref template-layers 0) TRUE))) (width (car (gimp-image-width original))) (height (car (gimp-image-height original))) ) (define (spline) (let* ((a (cons-array 8 'byte))) (set-pt a 0 0 0) (set-pt a 1 166 0) (set-pt a 2 246 255) (set-pt a 3 255 255) a)) (gimp-image-undo-group-start inImg) (gimp-image-add-layer template template-bg-copy -1) (gimp-image-set-active-layer template template-bg-copy) (gimp-selection-all template) (gimp-edit-copy template-bg-copy) (set! sharpen-mask (car (gimp-channel-new template width height "SharpenMask" 50 '(255 0 0)))) (gimp-image-add-channel template sharpen-mask 0) (gimp-floating-sel-anchor (car (gimp-edit-paste sharpen-mask FALSE))) (plug-in-edge TRUE template sharpen-mask inEdge 1 0) (gimp-invert sharpen-mask) (gimp-curves-spline sharpen-mask 0 8 (spline)) (plug-in-gauss-iir TRUE template sharpen-mask 1 TRUE TRUE) (gimp-edit-copy sharpen-mask) ; split to L*a*b* and sharpen only L-channel (set! lab-image (car (plug-in-decompose TRUE original (aref original-layers 0) "LAB" TRUE))) (set! lab-layers (cadr (gimp-image-get-layers lab-image))) (set! final-mask (car (gimp-channel-new lab-image width height "FinalMask" 50 '(255 0 0)))) (gimp-image-add-channel lab-image final-mask 0) (gimp-floating-sel-anchor (car (gimp-edit-paste final-mask FALSE))) (gimp-image-delete template) (gimp-selection-load final-mask) (gimp-selection-invert lab-image) (gimp-selection-shrink lab-image 1) (gimp-image-remove-channel lab-image final-mask) (plug-in-unsharp-mask TRUE lab-image (aref lab-layers 2) inRadius inAmount 0) (gimp-selection-none lab-image) ; compose image from Lab-channels (set! result-image (car (plug-in-drawable-compose TRUE 0 (aref lab-layers 2) (aref lab-layers 1) (aref lab-layers 0) 0 "LAB"))) (set! result-layers (cadr (gimp-image-get-layers result-image))) (gimp-edit-copy (aref result-layers 0)) (gimp-image-delete lab-image) (gimp-image-delete result-image) ; (set! sharpened (car (gimp-layer-new original width height 1 "Result" 100 0))) ; (gimp-image-add-layer original sharpened -1) (gimp-floating-sel-anchor (car (gimp-edit-paste (aref original-layers 0) FALSE))) (gimp-image-undo-group-end inImg) (gimp-displays-flush) ) ) (script-fu-register "script-fu-smart-sharpening" "/Script-Fu/Photokit/_Smart Sharpening" "Sharpen images intelligently. Smart sharpen only sharpens images on the edges, where sharpening counts. Even areas are not sharpened, so noise levels are kept down when compared to normal unsharp mask. You may need to tweak the parameters for best result." "Olli Salonen " "Olli Salonen" "Jan 07, 2004" "" SF-IMAGE "Image" 0 SF-DRAWABLE "Drawable" 0 SF-ADJUSTMENT "Amount of USM" '(0.5 0 10 0.01 0.01 2 0) SF-ADJUSTMENT "Radius of USM" '(0.5 0 10 0.01 0.01 2 0) SF-ADJUSTMENT "FindEdge amount" '(2.0 0 10 0.01 0.01 2 0) )