Removing "grey" graphical pattern from scanned text article?

hi there!
I'm new to this forum, been searching advices from here & via google for my photoshop/indesign challenges but here's one that I couldn't figure out.
I have scanned B&W article, which includes basic-text but underneath the text there's sort of like "headline" in large grey letters. I'm doing a scrapbook with custom size and cropping & re-fitting the original article leads to a situation where grey text is scattered. It looks un-professional and I want to be able to remove the whole grey "headline-text-part".
Sample:
Here's also a zoomed in sample of the situation.
So like said before I'd like to remove all the grey areas (large text), but save background + text. There must be a way to take a sample (tried "patterns" -> didnt succeed) of the grey area and then do some sort of "removal" for the whole greay area...?
I guess this is rather "special" case and I wasn't able to use common removal tools...Any help is appreciated.
Thanks
Thom

First it should be clear what you're dealing with. You have printed text, and then you have a halftone screen printed on the same plate and with the same ink. So color-wise, these two can't be separated. It's just a difference in scale.
You could try to run aggressive noise reduction on a duplicate layer to get rid of the halftone screen. Make a selection from that layer - but use the selection on the original layer. It would probably reduce the quality of the text you want to keep.
An alternative approach is to downsample a copy to the point where the halftone screen disappears, then upsample back to the original size. Again make a selection to use on the original.
I've no idea if this would work. Others may have better ideas.

Similar Messages

  • Removing the Control Characters from a text file

    Hi,
    I am using the java.util.regex.* package to removing the control characters from a text file. I got below programming from the java.sun site.
    I am able to successfully compile the file and the when I try to run the file I got the error as
    ------------------------------------------------------------------------D:\Debi\datamigration>java Control
    Exception in thread "main" java.util.regex.PatternSyntaxException: Illegal repet
    ition
    {cntrl}
    at java.util.regex.Pattern.error(Pattern.java:1472)
    at java.util.regex.Pattern.closure(Pattern.java:2473)
    at java.util.regex.Pattern.sequence(Pattern.java:1597)
    at java.util.regex.Pattern.expr(Pattern.java:1489)
    at java.util.regex.Pattern.compile(Pattern.java:1257)
    at java.util.regex.Pattern.<init>(Pattern.java:1013)
    at java.util.regex.Pattern.compile(Pattern.java:760)
    at Control.main(Control.java:24)
    Please help me on this issue.
    Thanks&Regards
    Debi
    import java.util.regex.*;
    import java.io.*;
    public class Control {
    public static void main(String[] args)
    throws Exception {
    //Create a file object with the file name
    //in the argument:
    File fin = new File("fileName1");
    File fout = new File("fileName2");
    //Open and input and output stream
    FileInputStream fis =
    new FileInputStream(fin);
    FileOutputStream fos =
    new FileOutputStream(fout);
    BufferedReader in = new BufferedReader(
    new InputStreamReader(fis));
    BufferedWriter out = new BufferedWriter(
    new OutputStreamWriter(fos));
         // The pattern matches control characters
    Pattern p = Pattern.compile("{cntrl}");
    Matcher m = p.matcher("");
    String aLine = null;
    while((aLine = in.readLine()) != null) {
    m.reset(aLine);
    //Replaces control characters with an empty
    //string.
    String result = m.replaceAll("");
    out.write(result);
    out.newLine();
    in.close();
    out.close();

    Hi,
    I used the code below with the \p, but I didn't able to complie the file. It gave me an
    D:\Debi\datamigration>javac Control.java
    Control.java:24: illegal escape character
    Pattern p = Pattern.compile("\p{cntrl}");
    ^
    1 error
    Please help me on this issue.
    Thanks&Regards
    Debi
    // The pattern matches control characters
    Pattern p = Pattern.compile("\p{cntrl}");
    Matcher m = p.matcher("");
    String aLine = null;

  • How can i remove the phone number from the text messages that i receive in the notification center

    how can i remove the phone number from the text messages that i receive in the notification center?

    You choose whether to see text messages in Notification Center or not.  If you elect to see them, they will display the phone number (unless they are from a contact in your contacts list).
    You can choose not to see them at Settings > Notification Center > Messages.

  • In Aperture, is there any way to remove the speckled effect from scanned early matt prints?

    I have a number of photos from the 1960s and 70s, the surface of which is covered with a matt effect. I suppose this was designed to stop fingerprints, but when scanned it shows up as a fine network of bright semicircles. The images are dreadful. My scanner has a setting that will remove this pattern, but at the cost of reducing the resolution to little more than 100 dpi, making the scans virtually unusable in anything like a Photobook. Are there any features in Aperture that might help? Or failing that, perhaps in Photoshop?

    What you need, is a dedicated image restauration filter that recognized the regular frequency pattern superimposed onto the prints. You can do this in advanced Image processing packages that let you compute the fourier transform of the image and then suppress or attanuate the frequency bands of the artefact with a band-stop filter.
    But neither Aperture nor PhotoShop have this kind of filter. In Aperture and Photoshop you can only soften the effect by blurring and then exporting a smaller version of the image.
    The algorithm that your scanner uses is probably the best that can be done, even if the resolution is only 100 dpi. 
    Do you still have the negatives? Scanning the negatives at a high resolution may give you better results.
    Regards
    Léonie

  • Remove Starbucks from my Text Screen

    How do I Remove the starbucks ad from my text screen.  I just switched from my IPhone for this **.  Now you are telling me it was a huge mistake.  I am upset I pay a lot of money every month for verizon service and paid a bunch for this phone and I get stuck with ads/ apps I cannot remove.

    What phone do you have?  There are a lot of texting apps...LOTS.  Each one has different backgrounds and features, sounds, and all kinds of extras.  You can even get different keyboards separately from apps in the Store if you want a different layout, including iPhone-like keyboards.  I use the stock LG G2 app for texting, but I also use a separate keyboard app called Google Keyboard that is more to my liking.  There is also Hangouts which handles texts and video calling built into Android phones.

  • How can erase incon text from short text when cursor over on pushbutton?

    Hi all.
    I have pushbutton ,i done by fuction code (selection screen)
    Eg:sscrfields-functxt_01 = '@0Y@ Create'
    when i have move on pushbutton by mouse cursor ,i have short discription like @0Y@ Create ,it displayed with icon code, i want remove my icon code from short text.
    pls advice me.
    regards.
    Raju j

    to avoid that use the following code.
    data: itext like SMP_DYNTXT  .
    itext-TEXT = 'Logoff' .
    itext-ICON_ID = '@15@' .
    itext-ICON_TEXT = 'Text to be displayed on the Button' .
    itext-QUICKINFO = 'Quick Info' .
    move: itext to sscrfields-functxt_01 .
    Regards
    Raja

  • How can one remove a raised texture pattern from a scan of the original photo?

    How can one remove a raised texture pattern from a scan of the original photo?
    Have several wedding photos scanned into PS Elements that were printed by the pro, photography studio on a raised pattern paper. Would anyone know how to remove the honey comb type pattern so that the picture canbe printed flat on glossy color photo paper?
    Any help would be greatfully appriciated.
    Thanks,

    The best way to remove a pattern is to use a Fast Fourier Transform.  There's a free plugin (as well as examples and instructions) here:
    http://dl.dropboxusercontent.com/u/6795661/4N6site/improc/fftplugin/examples.htm
    Using the plugin requires editing the individual colour channels, which PSE does not natively allow.  You'll need the reasonably-priced Elements+ addin:
    http://elementsplus.net/
    Here's a crop at 100% of the result I got:
    The pattern is much reduced.  With some experimenting, you can probably do a little better.
    Ken

  • I replaced my iPhone with a Galaxy 5 and am not receiving all of my text messages. The sales person told me to remove my phone number from iTunes to stop this from happening. Is that true? What does iTunes have to do with text messages?

    I replaced my iPhone with a Samsung Galaxy5 and I am not receiving all of my text messages now. The rep at the store told me to go to iTunes and take my phone # off of the account and that would fix the problem. Is that true? What does iTunes have to do with text messages anyway?

    You need to remove your phone number from the iMessage system.
    Read here: http://support.apple.com/kb/ts5185
    ~Lyssa

  • How do I remove lines from linked text?

    I am using Dreamweaver CS 4 and linked images and text are automatically underlined. How do I remove the underlines from linked text?
    https://www.adobe.com/support/dreamweaver/layout/link_underline/#72192
    According to the Adobe page above, I can add this code to the “head’ area of my html page and then all my links will not have visible lines, but I did that and the lines are still there. Any ideas why?
    <style type="text/css">
    <!--
    a:link {text-decoration: none}
    a:visited {text-decoration: none}
    a:active {text-decoration: none}
    a:hover {text-decoration: underline}
    -->
    </style>

    Hello,
    in my DW I can define this in the (translated from my german DW) page properties, see screenshot
    Have a look at Hyperlinks (CSS) >>> Unterstreichungsstil (underlining style) >>> use dropdown menu output >>> never underline (nie unterstreichen)
    Hans-Günter

  • How do I remove my phone number from another iCloud account so that text messages cannot be seen on another phone?

    How do I remove my phone number from another iCloud account. The issue is another phone receiving my text messages because of a shared apple ID.

    You can't remove your phone number from iMessage on an iPhone.  To prevent another phone from receiving your messages, use different Apple IDs for iMessage.  One of you should go to Settings>Messages>Send & Receive, tap the ID, sign out, then sign back in with a different ID.  You can still share the same ID for other services such as iTunes if you want; they don't have to be the same as your iMessage ID.

  • I cannot edit text in a PDF created from scanning

    I am using Adobe XI, and I have created a PDF by scanning a document.
    When I do click on a paragraph to edit text, all the page appears selected, it seems to be an image. At that moment a message pops up saying: this page has not editable text or digitalized content. The editing tools are disabled, so I cannot edit text.
    If I do export a page to Excel or Word, I can edit text there, although there are some kind of data that is not converted properly (even when I have executed OCR).
    I have edited preferences, but I am not sure if I did it correctly.
    Thanks

    I am using Acrobat XI Pro on PC.
    Of course, I have done all the steps you mention,  but I wanted someone to confirm me if these setting values are correct in order to obtain the best results. I repeat the paragraph of my previous discussion that I want to clarify, just in case some of you can help me, mainly about optimization
    I digitalized the document from the scanner. This scanner is installed in the net, so I personalized the settings in Acrobat and I chose memory mode instead of native mode.
    Mode color: black on white
    Resolution: 600 ppp
    As you say in your mail, I understand I should choose ClearScan OCR not searchable just at this moment.
    Well, and what about the options of optimization?, JBIG2 (without lost)?, 4 CCITT?
    And filters?, I have: activated, low, activated, medium
    Are these values congruous or compatible?
    Thank you
    De: Phillip Jones [email protected]
    Enviado el: martes, 27 de noviembre de 2012 18:24
    Para: Suárez Suárez, Manuela
    Asunto: I cannot edit text in a PDF created from scanning
    Re: I cannot edit text in a PDF created from scanning
    created by Phillip Jones<http://forums.adobe.com/people/PhillipMJones> in Creating, Editing & Exporting PDFs - View the full discussion<http://forums.adobe.com/message/4877588#4877588

  • How to remove html-tags from a text.

    Hello!
    I have a text-field which I will remove html-tag's from.
    Example:
    "This is a test<br><p> and another test"
    The function must return a similar text, but without the html-
    tags <br> and <p> (in this case).
    Anybody that can help me with this little problem?
    Thanks in advance for any help :-)
    Best regards
    Kjetil Klxve

    You can wait for some kind personal to post a complete code
    solution... But if you want to fix this yourself (which is good
    for the soul) here are some hints:
    - You can use SUBSTR to get at chunks of text
    - You can use INSTR to find particular characters.
    - You can use INSTR as an argument of SUBSTR
    Hence:
    bit_of_text := SUBSTR(text, 1, INSTR(text, '<'));
    chopped_text := SUBSTR(text, INSTR(text, '<'));
    bit_of_text := bit_of_text||SUBSTR(chopped_text, INSTR
    (text, '>'), INSTR(text, '<'));
    will give you the first bit of text that doesn't contain any
    angle brackets.
    From this you should be able to work out how to functionalised
    this (you'll need to store the offsets and use them in a loop
    construct).
    Note that this assumes that the text only contains the '<'
    character when it's part of a HTML tag. If you can't guarantee
    this then you'll have to explicitly search for all the tags e.g.
    bit_of_text := SUBSTR(text, 1, INSTR(lower(text), '<p>'));
    bit_of_text := SUBSTR(text, 1, INSTR(lower(text), '<br>'));
    This will be a bit of pain. And completely rules out XML!
    rgds APC

  • Remove non ASCII from a text loaded to a table

    I would like to use SQLLDR to load a text file to a table.
    But I would like to remove all non ASCII from the data either
    1. During SQL LOAD
    2. Or through a stored procedure.
    Could this be done in Oracle?

    I have done this on an insert trigger in the past, searching for ascii 0.
    In my case it went someting like this:
    FOR chr_indx  IN 1 .. length(:new.problem_string) loop
      IF ascii(substr(:new.problem_string,chr_indx,1)) = 0 then  --search here for what you consider is a problem character(s)
        --fix the problem
      end if;
    end loop;

  • DG text pattern from delivery used in Sales Order or Purchase Order

    Has anyone tried to copy the logic for printing EHS DG text pattern from delivery for use when generating bill of lading from a Sales Order or Purchase Order?
    SAP logic is using delivery only - we have not found how to copy SAP code to generate text patterns without delivery.
    Wondering if anyone has had similar issue and what approach or solution was found.

    hello, friend.
    you do not have to change the requested delivery date.  the purpose of this date is to indicate a preliminary customer requirement date.  this date is relevant for MRP.
    but the system looks at this requested date and calculates if your system can fulfill the requirement on this date; in the process, the system considers all lead times such as production (if internally procured), purchasing (if trading goods/externally procured) and others (delivery, picking, packing, etc.).  if yes, this requested date is adopted as the schedule line (and earliest delivery creation) date.  if no, then the system will propose a later date (also becoming the proposed confirmed schedule line date).
    hope this helped you.
    regards.

  • Noise (removal) from scanned slides

    I'm relatively new to Aperture and the image adjustment process in general.
    I have many slides dating from the late 70's and earl 80's (yes, I'm heading up in age). They were taken with a SLR Cannon AE1 which was pretty good for its time. So many of the images are pretty nice. The goal is to capture them digitally. We had one tray scanned commercially to start our process. From my perspective the scanning process was pretty successful and I have brought them into Aperture and organized / rated them etc.
    My questions are what I'll term "noise". Being very old, the slides have "dust", dirt etc. on them. This coupled with any original image processing noise and any artificialities due to the scanning process make may of them dirty /noisy. The problem is more significant/observable in lighter areas such as sky, beach etc. So the impact of what I call "noise" is not global across the image. That is my problem.
    I went to the Apple store for some 1-on-1 advice and basically was told go image by image with spot/patch, retouch, and the global noise reduction tool (not a good session). Obviously, that approach would be tedious, long and painful.
    Assuming I don't want to rescan,
    1. Are there workflows or processes that help reduce this conversion "noise" that have worked for others. Are there "best" practices way to improve images that arrive this way.
    2. One approach I have considered is an plugin editor that can help smooth the noise and do so on specific image areas.
    - is this a valid approach
    - are there recommended plugins for this problem.
    3. Any other directions or approaches from other that have been through this process would be appreciated.
    I appreciate any recommendations,
    Bob

    Noise has very specific meaning(s) in digital imagery. What you have are film dust and scratches, very different than noise.
    The bad news is that removing dust and scratches from digital images takes practice and is very time consuming; most folks use Photoshop or Photoshop Elements. The good news is that dust and scratches on slides (except Kodachrome) can usually be 98% removed during the scanning process using digital ICE technology (google digital ICE for info).
    ICE is hardware dependent, but all quality modern scanners have the capability. However the scanner operator must manually choose ICE before scanning, and like I said ICE does not work with Kodachrome. Your commercial scans were badly done if the slides were dusty (most are) and ICE was not offered to you.
    There are various filters (google dust and scratches filter for info) that can also be helpful, particularly for Kodachrome, but I have not personally used them because I use a Nikon 8000ED with ICE and the results on dust and scratches are nothing short of amazing. With ICE the scanner actually ignores the film surface where the dust and scratches reside. Unfortunately with Kodachrome the image is also on the surface of the film.
    Good luck!
    -Allen Wicks

Maybe you are looking for

  • DB polling problem

    Hi all, I am using polling operation to poll Oracle database table. I am using update field i.e. logical delete opeartion under polling. I have deployed my process, its running perfectly fine. Polling is also happening i.e. update and instance creati

  • Sun One Studio 8, Compiler Collection is live!

    Please download it at: http://wwws.sun.com/software/sundev/suncc/index.html - Rose

  • B1if - #sender system in for each processing loop

    Hi all, I am creating a scenario where I use the for each processing loop. Everything works fine but when I want to use the #Sender system in various steps (call B1 atom eg), I get an error saying the #Sender system is empty. Do I need to do somethin

  • Quicktime clip download - reducing resolution possible?

    Hi all. I have watched and saved one of the BBC's HD Quicktime clips here at home on my iMac. It's spectacular and I would like my special education students to watch it at school, where our newest Mac is a 450 Mhz Digital Audio. (no internet there,

  • Help required with User exit logic

    Hi gurus, Please help me with the logic I wrote for the user exit for a PP Work Center View extract structure. Here is the details of the add on fields: VGW01, VGW02, VGW03, STEUS(from table PLPO); DataSource: 2LIS_04_P_ARBPL, data: l_s_pp1 like MC04