Gimp High Pass Filter Download
High Pass Filter- This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com. This is a read-only list on gimpusers.com so this discussion thread is read-only, too.
A high pass filter is a fitter that removes low frequency information form a singnal. Now there are many ways to implement a high pass filter, but photoshops high pass filter most likely is the result by subtracting the blurred image from the original (as mentioned by @filip).Simply all of image minus the low frequency is just the high frequency. A general purpose high-pass filter plugin. It shows up as Filters-Generic-High Pass Filter. You can select a blur radius that sets the size of detail to be passed by the filter, as well as an option to keep the source layer or replace it.
I have license of older version of Adobe Photoshop, I don't really need much, just a few things I use for touching up images. I'm not into amateur digital photography that much anymore and for development environment, I migrated to Linux.
I've been meddling with GIMP, I couldn't quite figure it out yet. For now I'm looking for something equivalent to High-pass, which I used to use in combination with 'Soft light' blending to selectively sharpen images.
Any editor with similar filters available for Ubuntu/Linux?
sdkkssdkks1 Answer
Since you already have Photoshop, you could try running it using Wine (assuming the filters you need are present in said version). And since it's an old version, you're less likely to run into problems.
Gimp High Pass Filter Download Free
Visit the official install page for Ubuntu to get started with the latest versions.
Check the Wine appdb page for Photoshop to see what results people have got running various Photoshop versions in Wine, and any necessary workarounds.
Not the answer you're looking for? Browse other questions tagged gimpimage-processingimage-editor or ask your own question.
PermalinkJoin GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up; |
; The GIMP -- an image manipulation program |
; Copyright (C) 1995 Spencer Kimball and Peter Mattis |
; |
; Highpass Filter Sharpening, V2.0 for GIMP 2.4 |
; Original author: Martin Egger (martin.egger@gmx.net) |
; (C) 2005, Bern, Switzerland |
; |
; Tags: photo, sharpen |
; |
; Author statement: |
; |
; You can find more about Highpass Filter Sharpening at |
; http://www.gimp.org/tutorials/Sketch_Effect/ and at |
; http://www.retouchpro.com/forums/showthread.php?s=&threadid=3844&highlight=high+pass |
; |
; -------------------------------------------------------------------- |
; Distributed by Gimp FX Foundry project |
; -------------------------------------------------------------------- |
; - Changelog - |
; |
; -------------------------------------------------------------------- |
; |
; This program is free software; you can redistribute it and/or modify |
; it under the terms of the GNU General Public License as published by |
; the Free Software Foundation; either version 2 of the License, or |
; (at your option) any later version. |
; |
; This program is distributed in the hope that it will be useful, |
; but WITHOUT ANY WARRANTY; without even the implied warranty of |
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
; GNU General Public License for more details. |
; |
; You should have received a copy of the GNU General Public License |
; along with this program; if not, write to the Free Software |
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
; |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;. |
; Define the function |
; |
(define (script-fu-Eg-HighPassSharpen InImage InLayer InBlur InOpacity InFlatten) |
; |
; Save history |
; |
(gimp-image-undo-group-start InImage) |
; |
(let* ( |
(Temp1Layer (car (gimp-layer-copy InLayer TRUE))) |
(Temp2Layer (car (gimp-layer-copy InLayer TRUE))) |
) |
; |
(gimp-image-add-layer InImage Temp1Layer -1) |
(gimp-image-add-layer InImage Temp2Layer -1) |
; |
(plug-in-gauss TRUE InImage Temp2Layer InBlur InBlur TRUE) |
(gimp-invert Temp2Layer) |
(gimp-layer-set-opacity Temp2Layer 50) |
; |
(let* ( |
(SharpenLayer (car (gimp-image-merge-down InImage Temp2Layer CLIP-TO-IMAGE))) |
) |
; |
(gimp-levels SharpenLayer HISTOGRAM-VALUE 1001501.00255) |
(gimp-layer-set-mode SharpenLayer OVERLAY-MODE) |
(gimp-layer-set-opacity SharpenLayer InOpacity) |
; |
; Flatten the image, if we need to |
; |
(cond |
((= InFlatten TRUE) (gimp-image-merge-down InImage SharpenLayer CLIP-TO-IMAGE)) |
((= InFlatten FALSE) |
(begin |
(gimp-drawable-set-name SharpenLayer _'Sharpened') |
(gimp-image-set-active-layer InImage InLayer) |
) |
) |
) |
) |
) |
; |
; Finish work |
; |
(gimp-image-undo-group-end InImage) |
(gimp-displays-flush) |
) |
; |
(script-fu-register |
'script-fu-Eg-HighPassSharpen' |
_'Sharpen (_HighPassFilter)' |
_'Eg High-Pass Filter Sharpen' |
'Martin Egger (martin.egger@gmx.net)' |
'Martin Egger, Bern, Switzerland' |
'07.10.2007' |
'RGB* GRAY*' |
SF-IMAGE 'The Image'0 |
SF-DRAWABLE 'The Layer'0 |
SF-ADJUSTMENT _'Blur Radius''(7.01.080.01.0020) |
SF-ADJUSTMENT _'Sharpening Layer Opacity''(55.01.0100.01.0020) |
SF-TOGGLE _'Flatten Image' FALSE |
) |
; |
(script-fu-menu-register 'script-fu-Eg-HighPassSharpen' |
'<Image>/Filters/Eg') |
; |
Copy lines Copy permalink