Ask a Question related to Adobe Photoshop 7, CS, CS2 & CS3, Design and Development.

  1. #1

    Default Custom Filter

    How do you use it?
    emencz Guest

  2. Similar Questions and Discussions

    1. #40499 [NEW]: filter sapi does not register any highlightning filter
      From: php at henke37 dot cjb dot net Operating system: any PHP version: 6CVS-2007-02-15 (CVS) PHP Bug Type: Apache2 related...
    2. Update Custom Collection that is bound to DataGrid made up of Custom COlumns
      I recieved some very useful help from Steven Cheng in an earlier post in this group entitled 'Dynamically create datagrid columns' and am now...
    3. Data Grid Header Filter Renderer or how do I get aheader to filter the data in a datagrid.
      Okay so on the same theme as why isn't the datagrid like Excel, I have created a (very cool) Filter header. 1) The filter looks like any other...
    4. How to assign a custom principal with a custom soap extension
      I have created a custom soap extension. What I need to do next is assign my own custom principal to the current request context so that the...
    5. ASP.NET and custom ISAPI filter authentication
      We have an existing ISAPI filter that performs authentication for all pages on our web site, including pages we are now writing for ASP.NET. The...
  3. #2

    Default Re: Custom Filter

    I believe its quite an obscure feature. You need to get a book like PS Bible to get any details.
    Colin Walls Guest

  4. #3

    Default Re: Custom Filter

    Whew....for the third time this week:

    <http://www.creativemac.com/2002/02_feb/tutorials/cmfilterfactorycomplete.htm>
    Phosphor Guest

  5. #4

    Default Re: Custom Filter

    Actually, Colin, if you check out the Help files in PS regarding Filter/Other/Custom you will discover that Phos' link explains the convolution properties discussed in the help files to a much better degree, and DOES fit what emencz is looking for, WITHOUT the extra expenditure for an additional book.
    Ol' Whozit Guest

  6. #5

    Default Re: Custom Filter

    Thanks for the link, Phodphor. Sorry about the 3 times this past week thing.

    And yes, I did mean filter>other>custom. Does anybody use it? I've seen some tuts regarding this feature, but all they do is tell me what values to enter.
    emencz Guest

  7. #6

    Default Re: Custom Filter

    No worries, E-Mendch! ;o)

    I don't know how to use it either, and quite frankly, I don't care. I'm just happy that there are number-crunchers out there that are able to put a pretty face on image manipulating algorithms so I can look like a whiz, doing what I do.

    Look around for Gernot Hoffman's name. He's pretty good at that stuff, and I'm sure he'd be happy to spell it all out for you.
    Phosphor Guest

  8. #7

    Default Re: Custom Filter

    I stand corrected.
    Colin Walls Guest

  9. #8

    Default Re: Custom Filter

    Thanks for the compliment.
    A filter works as follows:
    The numbers in the box are weighting factors.
    The center pixel is replaced by the weighted sum of all
    pixels in the box (empty=zero weight)

    E.g. a blurring filter, sort of primitive Gaussian:
    1 2 1
    2 7 2
    1 2 1

    The problem in PhS is the scaling - doesn´t work automatically:
    Scale by the sum of all factors: 7+4*2+4*1 =19
    Offset 0

    The most "stupid" blur filter is the box filter:
    1 1 1
    1 1 1
    1 1 1
    Scale=9

    This is a highpass, the sum of all factors is 0. A bad highpass.
    -1 -1 -1
    -1 +8 -1
    -1 -1 -1

    Scale=1 (not understandable), offset=128.

    Sharpening filters are a little more complex.

    A rather simple illustrated explanation is here.
    <http://www.fho-emden.de/~hoffmann/gauss25092001.pdf>

    Best regards --Gernot
    Gernot Hoffmann Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139