Page 1 of 4 123 ... LastLast
Results 1 to 10 of 33

Thread: Resizing After Scanning Black & White Negative

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Join Date
    Oct 2013
    Location
    Doncaster UK
    Posts
    627

    Resizing After Scanning Black & White Negative

    Just looking for clarification that the method I am currently using for resizing after scanning with an Epson V800 scanner is considered to be the most optimal way.

    Step 1
    Scan at 2400ppi and bring into Photoshop.
    Note: I have recently started to scan at 4800 wondering if this will give give me closer to the scanners optimal resolution of 2400.

    Click image for larger version. 

Name:	Screenshot 2019-01-01 at 15.35.55.jpg 
Views:	35 
Size:	55.5 KB 
ID:	185937

    Step2
    Uncheck the resample checkbox and change the Resolution to match the printer (360 for the Epson R3880)

    Click image for larger version. 

Name:	Screenshot 2019-01-01 at 15.36.19.jpg 
Views:	26 
Size:	55.0 KB 
ID:	185938

    Step 3
    Recheck the Resample checkbox, enter the desired output size and choose Bicubic Sharper (reduction) for the resample method.

    Click image for larger version. 

Name:	Screenshot 2019-01-01 at 15.36.39.jpg 
Views:	30 
Size:	32.9 KB 
ID:	185939

  2. #2

    Join Date
    Aug 2013
    Location
    Chicago
    Posts
    1,856

    Re: Resizing After Scanning Black & White Negative

    Maybe someone will respond to this: I'm not sure that it's such a bad idea to let the printer handle resampling rather than do it yourself. It should know what it wants. That's not an informed comment, so I welcome qualified answers!
    Thanks, but I'd rather just watch:
    Large format: http://flickr.com/michaeldarnton
    Mostly 35mm: http://flickr.com/mdarnton
    You want digital, color, etc?: http://www.flickr.com/photos/stradofear

  3. #3

    Join Date
    Oct 2015
    Posts
    1,581

    Re: Resizing After Scanning Black & White Negative

    Ian, that's a fine method to down-sample an image file. It's best if you don't let the printer driver resample the image in any way. FWIW, the method I established years ago is:

    1. Test to determine the optimal optical resolution for your particular scanner; not always what the manufacturer claims as the max optical resolution.

    2. Scan all film at your pre-determined optimal scanner resolution, thereby creating a master file that is never modified (think of it as a raw file.)

    3. Edit, as needed, then target output for whatever is needed.

    Note: Bicubic Sharper may not always be the best choice when down-sampling. Depending on the image, a simple Bicubic will provide better tonal transitions.

  4. #4

    Join Date
    Dec 2013
    Location
    Nashville
    Posts
    610

    Re: Resizing After Scanning Black & White Negative

    What method does PS use for downsampling when Auto is selected?

  5. #5

    Join Date
    Oct 2015
    Posts
    1,581

    Re: Resizing After Scanning Black & White Negative

    Quote Originally Posted by faberryman View Post
    What method does PS use for downsampling when Auto is selected?
    Don't know for sure, but I'd assume Bicubic Smoother since that algorithm was Adobe's recommendation for reducing image size back when it was added to the Image Size dialog.

  6. #6

    Join Date
    Jul 2016
    Posts
    4,566

    Re: Resizing After Scanning Black & White Negative

    Quote Originally Posted by faberryman View Post
    What method does PS use for downsampling when Auto is selected?
    This is undisclosed, I think: "Automatic: Photoshop chooses the resampling method based on the document type and whether the document is scaling up or down." (document type ? different for indexed color, etc?)

    A good guess is that it depends on if we are increasing or decreasing the pixel count, Bicubic Smoother (enlargement), Bicubic Sharper (reduction), for those situations, ...also I'm suspecting they use Bicubic (smoother gradients) if the new size is close to the original.

    After any resize a sharpening should follow... but IMHO the sharpenings included in the Ps resizing algorithms are conservative to not destroy things, so my view is that anyway we should try a final manual sharpening just before moving from 16 bits/channel to 8 bits/channel for the image release.

  7. #7
    Steven Ruttenberg's Avatar
    Join Date
    Sep 2017
    Location
    Prescott Valley, AZ
    Posts
    2,788

    Re: Resizing After Scanning Black & White Negative

    Quote Originally Posted by Pere Casals View Post
    This is undisclosed, I think: "Automatic: Photoshop chooses the resampling method based on the document type and whether the document is scaling up or down." (document type ? different for indexed color, etc?)

    A good guess is that it depends on if we are increasing or decreasing the pixel count, Bicubic Smoother (enlargement), Bicubic Sharper (reduction), for those situations, ...also I'm suspecting they use Bicubic (smoother gradients) if the new size is close to the original.

    After any resize a sharpening should follow... but IMHO the sharpenings included in the Ps resizing algorithms are conservative to not destroy things, so my view is that anyway we should try a final manual sharpening just before moving from 16 bits/channel to 8 bits/channel for the image release.
    Photoshop allows you to choose the down sampling scheme you prefer. I prefer smoother gradients and that has been sizing files from 6000 to 300 with final sharpening after. Works very well. I used GF, tried Nik, but I don't like having yet another program to deal with. Photoshop if you are experienced at all the methods available provides very good results. I also sharpen selectively and at a level that is almost not detectable (my scan files can pretty much stand o their own with no sharpening)

  8. #8

    Join Date
    Jul 2016
    Posts
    4,566

    Re: Resizing After Scanning Black & White Negative

    Quote Originally Posted by Steven Ruttenberg View Post
    (my scan files can pretty much stand o their own with no sharpening)
    Yes.. nothing like having "native sharpness" !!!

    Perhaps we should look a bit in the rear-view mirror.

    I like the sharpening algorithms used by Sally Mann for her impressive prints. You place a 8x10 collodion plate in the enlarger's carrier... then we execute the algorithm:


    /////////////////////////////////////////////
    //GNU General Public License
    /////////////////////////////////////////////

    #include <iostream>
    #include "enlarger.h"

    int main()
    {
    Load_Default_Gear();

    if(!sharp_negative() ) return GO_TO_SHOT;

    for (int i = 0; i < MAX_FOCUS_OPS; i++) {

    CImage* pImg = pEnlarger->Focus_Procedure(the_negative, loupe); // pointer pImg owned by CEnlarger instance

    if (Check_Sharpness(pImg)) {

    Print_Nice_Image(pImg);
    return YOU_HAVE_A_NICE_PRINT;
    }
    }

    return GO_ALIGN_ENLARGER;
    }

  9. #9
    Steven Ruttenberg's Avatar
    Join Date
    Sep 2017
    Location
    Prescott Valley, AZ
    Posts
    2,788

    Re: Resizing After Scanning Black & White Negative

    Quote Originally Posted by Pere Casals View Post
    Yes.. nothing like having "native sharpness" !!!

    Perhaps we should look a bit in the rear-view mirror.

    I like the sharpening algorithms used by Sally Mann for her impressive prints. You place a 8x10 collodion plate in the enlarger's carrier... then we execute the algorithm:


    /////////////////////////////////////////////
    //GNU General Public License
    /////////////////////////////////////////////

    #include <iostream>
    #include "enlarger.h"

    int main()
    {
    Load_Default_Gear();

    if(!sharp_negative() ) return GO_TO_SHOT;

    for (int i = 0; i < MAX_FOCUS_OPS; i++) {

    CImage* pImg = pEnlarger->Focus_Procedure(the_negative, loupe); // pointer pImg owned by CEnlarger instance

    if (Check_Sharpness(pImg)) {

    Print_Nice_Image(pImg);
    return YOU_HAVE_A_NICE_PRINT;
    }
    }

    return GO_ALIGN_ENLARGER;
    }
    I will have to give it a try!

  10. #10

    Join Date
    Dec 2018
    Location
    Guelph, Ontario, Canada
    Posts
    295

    Re: Resizing After Scanning Black & White Negative

    Jeff Schewe, author of The Digital Print, recommends preparing the file in the resolution needed by the printer rather than letting the printer driver do the re-sizing; this includes resizing through the print dialogue box. For downsampling, he suggests bicubic smoother. For upsizing a lot, he recommends preserve detail. For small amounts up or down, he recommends using the automatic setting and letting Photoshop decide. In his testing with Epson printers, he claims to be able to see the difference between 720 ppi and 360 ppi (so don't throw away the extra pixels is his advice). I use Lightroom, which takes care of up- and down-sizing "under the hood". I'm creating a TIFF at export, which I send to Quadtone RIP. In my experience it does a good job. There are also specialized applications out there that claim to have various kinds of secret sauce to produce better results.

Similar Threads

  1. Scanning black and white?
    By Michael Lloyd in forum Digital Hardware
    Replies: 4
    Last Post: 20-Jul-2013, 15:31
  2. Black and white negative scanning - tricky?
    By Meekyman in forum Digital Processing
    Replies: 13
    Last Post: 17-Apr-2013, 06:25
  3. problem scanning black and white prints
    By Terence Falk in forum Digital Hardware
    Replies: 4
    Last Post: 1-Jan-2013, 17:36
  4. scanning 4x5 black and white negatives
    By beichh4046 in forum Digital Processing
    Replies: 1
    Last Post: 16-Nov-2011, 20:27
  5. What black and white paper for digital scanning
    By Chris Jones in forum Digital Processing
    Replies: 0
    Last Post: 3-Nov-2009, 20:48

Bookmarks

Posting Permissions

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