Color Management - Am I Doing Something Wrong

I am encountering a problem that I see a great deal of discussion about but to which I am not finding a solution (if there is one).  After converting a jpeg to sRGB, I am seeing oversaturation, particularly in reds, in some applications and on a digital photo frame.
So far this has cropped up in two scanned negatives that I did not have tagged from the scanner, moved into Lightroom (as a 16 bit TIFF), moved into CS5, converted to ProPhoto RGB, and edited.  I then flattened, converted to sRGB (trying it 3 alternative ways, e.g from the LR export module, from PS edit>convert menu, & from the Save for Web and Devices Module).  On my color managed applications the colors look fine.  I first noticed this in the file thumbnails for the images and then when viewed on a digital frame.  Also in some applications (but not others) I see this oversaturation.  The only workaround I have found is to assign my monitor profile to the image.
I do not have a wide gamut monitor (HPLP2475W), although I think that would create the opposite problem, and I reprofiled my monitor with an Eye One after this problem first appeared.
After trying many different things, searching around on the web and rereading my color management stuff, I still haven't figured out where I have gone wrong.  Any ideas?  The only hint I have as to what may be wrong is that in soft proofing, my Monitor RGB seems to be much more saturated than the image as it appears outside of soft proofing.  As I indicated, I reprofiled my monitor but that phenomenon remains.

Based on what you have said above and after hitting the books, this may be where I have gone "wrong."  Let me know what you think.  I am scanning color negatives and as such cannot create a custom profile for the scanner output.  (At least that is the conventional wisdom from everthing I have read, mainly because of the number of variables that could make a profile next to useless).  I brought the image into Lightroom with the full gamut of the scanner but without any tag or embedded profile.  I then exported them to CS5, but I probably should not have converted to ProPhoto RGB at that point because, as you note, I was "approving" its appearance at that point even though the image had no starting profile to begin with and except for a global Lightroom adjustment, I had done nothing to correct it.  Thus, I am assuming that what I did was to start down the color management path with an incorrect assumption about the accuracy of the color values in the image from the beginning.  And that would cause my output at the end after conversion to sRGB to look wrong on an unmanaged sRGB device.  Do I have that right?
Instead, I probably should have done any of the following:
(1)  Using Nikon Scan (also an option in SilverFast), let the scanner software profile an image in my chosen color space (as opposed to the full color gamut of the scanner) as best it can, and move forward from there.  Nikon Scan uses a one size fits all canned scanner profile and then (presumably) converts it to the color space of choice.  Silverfast must do essentially the same thing for color negatives but, as a starting point, gives you profiles for various kinds of negatives, with the caveat that it also cannot hit the accuracy mark dead on because of the variability of negatives.  Either of these options present the easiest, least challenging, but perhaps suboptimal, solution.
(2)  Bringing the untagged image into the CS5 Working Color Space from Lightroom and then previewing the image under different profiles until one is found that comes closet to matching the expected colors and gamma of the image, and assign that profile.  Then edit the image from there, converting as necessary.
(3)  Leaving the image unmanaged, but in the working color space handed off from Lightroom (ProPhoto RGB), manually color correcting without the aid of a starting profile, and only converting to a desired color space (e.g. sRGB) for a specific output device (e.g., a photo frame or the web).
(4)  Assigning the working space handed off from Lightroom (ProPhoto RGB), manually color correcting without the aid of a starting profile, and converting to other color spaces as necessary for a specific output.
I'm not sure there is a huge amount of difference between #3 and #4.
Do these sound like the correct options to you?
Thanks,
Brian

Similar Messages

  • Maven dependency mgmt: am I doing something wrong?

    (title shortened to simply not make it too long, not because I am l33t).
    I have a little frustration that only makes me wonder if I am doing something wrong. My general opinion about maven is that it is a great tool that can save a lot of effort managing builds. However, I sometimes find myself traversing down dependency management hell. The source of my problems: transitive dependencies.
    Is it me, or is the maven repository tree polluted? Sometimes I have no other option (that I know of) than adding manual exclusions to my parent poms to filter out transitive dependencies I really do not need, and in some cases even cause conflicts. Now I must say, most of these problems stem from JBoss endorsed projects such as Seam and JBPM.
    If for example I add JBPM 3.3.2 to my application I get Jackrabbit, Lucene and whatever else for "free" with it - I exclude them to keep my dependency tree clean because during runtime these dependencies really are not needed.
    Worse is when I want to use JBoss Seam 2.1.2 (on JBoss 4.2.3, unfortunately I cannot go to a newer JBoss yet) - to be able to do this I must include a dependency org.jboss.el/jboss-el to the project and war, otherwise a single util class cannot be found (grrr). But this dependency transitively adds javax.el / el-api - at compile scope! If this is let slip through and a war is deployed with this dependency present, a classpath isolated environment will give classloader clashes with the classes that the JBoss server itself provides. So I add an exclusion...
    These were just isolated examples and certainly not the only ones I encountered so far. Does anybody else experience these kind of issues? And is there perhaps something obliviously obvious that I am failing to do which would rid me of the need to add manual exclusions? Or am I correct in stating that the repository really is this polluted?

    I've seen that effect, but luckily not to a degree where it got a huge problem. Simply write the necessary excludes when you see such a case and go on. It wasn't necessary too often yet.
    The problem seems to stem from the fact that many Maven artifacts are simply "project X". That means that each and every feature that project X provides is bundled in a single jar which draws in each and every dependency that project X has anywhere.
    The smarter (or at least more maven-friendly) approach would have been to split project X in "project X - core functionality", "project X - lucene search support", "project X - frobnicator" and provide a "project X - everything" module that pulls in all there is for the project.
    This way we could pick only those modules that we need in our dependency and therefore also get only those transitive dependencies that we really need.
    Unfortunately only a few projects have that kind of architecture, so we'll have to live with the excludes for a while.

  • Am I misunderstanding stateful webservice or doing something wrong?

    Hi there...
    I am trying to create a stateful webservice... this is what I did exactly in JDeveloper
    1: created the following class
    *public class test {*
    public int O;
    *public test() {*
    *public String getIt() {*
    O++;
    return String.valueOf(O);
    2: Created a webservice out of it exposing the getIt method. I made sure that it is a stateful webservice. I set its scope to be for the session, lasting for 3000 second.
    3: run the webservice
    4: connected to it from VB.NET using the wizard
    5: adding the following code in vb :
    Dim J As New ServiceReference1.MyWebService1Client
    J.Open() ' open the connection with the service
    For I = 1 To 100  ' execute the call 100 times
    MsgBox(J.getIt) ' call the method and display the result in a message box
    Next
    J.Close() ' close the connection
    what I was expecting is that the counter should return the the values 1,2,3,...
    however what I am getting is the value 1 all the time. This means that the object test is being destroyed and created again with each call.
    I am doing something wrong here for sure, what I want to do is that the object test is being created once , and it should last for the whole session so that I can get the values 1,2,3,4, .
    kindly if you know how what I am doing wrong let me know.
    thanks.

    Hi there...
    thank you so much for these links. I just modified the webservice to generate an application module and store it in the session of the user. When doing multiple calls I was able manage different transactions.
    for now I am not releasing the application module. The question is now if the session of the user is destroyed, will all the resources of the application module go back to the system? I assume so...
    thanks again for your help.
    yours
    mkaatr

  • So I just dowloaded Photoshop and I never got it. I dont know if im doing something wrong or anything. It say that i purchased it so if anyone can help me that would be great :D

    So I just dowloaded Photoshop and I never got it. I dont know if im doing something wrong or anything. It say that i purchased it so if anyone can help me that would be great

    That link want to launch an Adobe download manager.  That may not be working on your machine for some reason.  Try using this link to download the direct installer.  BE SURE TO READ AND FOLLOW THE DOWNLOAD INSTRUCTIONS else you will be DENIED ACCESS  Adobe CC 2014 Direct Download Links: Creative Cloud 2014 Release | ProDesignTools

  • I cannot change from grid view to list view when i contol click on the downloads folder on the dock am i doing something wrong? if so how do i change the ?view in the dock

    when i contol click on the downloads icon in the dock i get the gris view . I thought if you control click, you are able to change the view to fan or list. am I doing something wrong.? Icheck to make sure the contol key is working by doing a screenshot and it works there. What am I doing wrong?

    Needs to be a Stack ?

  • I have added photos to My Photo Stream on my PC (Windows 7). They appear in the Uploads folder instead. They do not upload to iCloud. Am I doing something wrong?

    I have added photos to My Photo Stream on my PC (Windows 7). They appear in the Uploads folder instead. They do not upload to iCloud. Am I doing something wrong?

    Unfortunately, photo stream on a PC is iffy at best.  Many people have problems getting it to work properly, including myself.  A work around would be to use an app like PhotoSync on your PC, which can send photos wirelessly to the camera roll on any of your iOS devices on the same wifi network.  Once in the camera roll, you iOS device will be added to your photo stream.

  • Iphone 4s wont sync when I connect it to the pc( not apple). It is connected as it comes up on itunes but when I try to sync it with apps/ music etc it wont. I am doing something wrong or is it a mistake with the phone.

    My iphone 4s wont sync when I connect it to the pc( not apple). It is connected as it comes up on itunes but when I try to sync it with apps/ music etc it wont. I am doing something wrong or is it a mistake with the phone. I am still able to download apps and music from itunes on my phone though.
    I already restored it but that didn't help.
    TIA for any replies.

    iPod touches or any iDevices from Apple sync only to one computer. If you sync to a different computer, all your music will be replace with the music from the new computer's iTunes. If the music were purchased from iTunes, you can re-download them again otherwise the music on iPod touch will be deleted. Do you have iTunes backup? 

  • I have backed up my old phone to itunes, however, when I try to restore data to new phone it is saying the password is incorrect but I can get into my itunes account with my password so I am doing something wrong?

    I have backed up my old phone to itunes, however, when I try to restore data to my new phone it is saying the password is incorrect but I can get into my itunes account with my password so I am doing something wrong?

    I'm having this EXACT same problem with my iPhone 4, and I have the same computer stats (I have a Samsung Series 7)

  • I have a Windows 8.1 and it's even running slow.  I'm a complete novice with computers (I've only had this one for 3 weeks) and I'm probably doing something wrong, but I haven't a clue what....

    I have a Windows 8.1 and it's even running slow.  I'm a complete novice with computers (I've only had this one for 3 weeks) and I'm probably doing something wrong, but I haven't a clue what.
    The tools are not responding when I try to use them.  Some of them work sometimes, but not others and some don't work at all.  I'm in a design class online and I need these tools desperately.  I have an assignment due Monday and I'm losing the whole weekend because Tech Support is only open M-F!
    Any help anyone can give me will be appreciated.
    Thanks,
    Rose Ireland

    Maybe these links provide some pertinent information.
    Optimize performance | Photoshop CS4, CS5, CS6, CC
    Photoshop: Basic Troubleshooting steps to fix most issues

  • HELP! Downloaded LR5 and when open it shows an error message saying error while trying to change from modules and I can not even import photos. Am I doing something wrong?

    HELP! Downloaded LR5 and when open it shows an error message saying error while trying to change from modules and I can not even import photos. Am I doing something wrong?

    I have the same problem, and the solutions in   Error changing modules | Lightroom do not work.  Even uninstalling and reinstalling a new copy did not solve the problem.  As anyone got an idea what other lingering files might be causing the problem?

  • After creating a new slideshow I export it with the  setting HD 1080p it is then saved as a .mov i then create a dvd in idvd and the quality is not  as good as the original photo's when viewed on the monitor or a TV, am i doing something wrong?

    After creating a new slideshow I export it with the  setting HD 1080p it is then saved as a .mov i then create a dvd in idvd and the quality is not  as good as the original photo's when viewed on the monitor or a TV, am i doing something wrong?

    DVD's are only 640 x 480 (interlaced), so yes, the quality is not nearly as good.  You should probably create your .mov in DV format to best match the DVD format

  • Is this a bug in ipod software or am i doing something wrong?

    I got my ipod video a few weeks ago and was excited to be able to carry all 7000+ songs around in one place.. but then i ran into this problem and i'm not sure if it's a bug or if i'm doing something wrong.
    let's say i have exactly one album by an artist.. and i also happen to have some singles from the artist, with no album set... (i prefer not to have albums set for songs i don't have the entire album for, to keep from having to sort through a truckload of albums i don't completely have).
    when i browse by artist, and i select the artist, only the songs in the album shows up, all the non-album labeled songs are not visible! the same thing happens when i choose by genre..
    in fact the only way to find those songs not bound to an album is to select them from the song list.. and having to scroll through 7000+ songs to find one really bites..
    curiously enough, if there is two or more albums, then i can find the songs without albums.. definately sounds like a bug to me.. the software for the ipod video is only at v1.0, maybe they'll fix this (hopefully other ipods don't have this problem, i have no way of knowing though).
    one work around i have tried is to set an empty album for the artist's song that has none, but i mean i don't want to do that for all my non-albumed songs because i'm interested in preserving the timestamp of songs (to know when i got them) and i can't reasonably search for songs that have exactly one album to just set those..

    when i go to Music > Artist > All, as you suggested, i see all the albums i have listed. doesn't really relate to my problem with artists with songs in one album, as well as song w/o album set, and the latter not showing up.
    but that reminds me, why is it when i go to the All section from a particular artist and they do have more than one album (or even no albums), the order of the songs is in the order they are in the albums.. if i wanted the order it is on albums, i would have selected that album for example.. it would be nice if the songs were in alphabetical order when you're NOT browsing by album, making a particular song easier to find (what if you have thirteen albums for example and u aren't sure which album a song is on, now you have to scroll through a seemingly random ordered list to find one song, alphabetical would be SOOOO helpful!)

  • I just purchased Adobe Acrobat in order to convert a pdf to an excel program but it appears that it will only convert to Word, not excel? Am I doing something wrong or should I cancel my subscription?

    I just purchased Adobe Acrobat in order to convert a pdf to an excel program but it appears that it will only convert to Word, not excel? Am I doing something wrong or should I cancel my subscription?

    What happens when you convert to excel?

  • Using the crop tool in Lightroom 5 I can only move and crop my photos from the top. Am I doing something wrong?

    I am new to Lightroom 5 and find I cannot crop my photos as easily as I did in iPhoto. I would like to be able to drag them if I choose a custom size or crop them from the bottom as well as from the top but my two sided arrow disappears when I work at the bottom of the photo. Am I doing something wrong?

    I would suggest you trash the prefs.
    Quit Lightroom
    Launch Finder and find the user Library by clicking the Go menu whilst holding down the Optn (alt) key (n.b. the library is hidden until you press the optn key) and inside the Library folder select the preferences folder. Then trash the following file:
    com.adobe.Lightroom5.plist
    Then re-launch Lightroom
    It’s then worth clearing each cache. Go to the top menu bar:
    Lightroom >> Preferences >> File Handling (tab)
    Click the Purge Cache button under Camera Raw Cache Settings; then click the Purge Cache button under Video Cache Settings. Finally click OK.

  • Ive just signed up for the adobe photoshop pack, i use a mac, when i click download, nothing is happening..  Am I doing something wrong?? When I try and open the software I already had from trial it says its expired,  or i need to use a serial number... H

    Ive just signed up for the adobe photoshop pack, i use a mac, when i click download, nothing is happening..  Am I doing something wrong?? When I try and open the software I already had from trial it says its expired,  or i need to use a serial number... HELP Anyone else experienced this?

    If there is an option to "license this software", and it takes you to a sign-in page with username and password (not a serial number) - then just go ahead and sign in.
    If it insists on a serial number you need to uninstall the trial. Then try to download again.

Maybe you are looking for

  • Can I install a 3TB drive in my mid-2007 24" iMac?

    I'd like to know if I can install a 3TB drive in my mid-2007 24" iMac. The OTW page for this model says that 2TB is the maximum, but I think it was written before 3TB drives became available. Does anyone know if the controller will recognize drives l

  • Photoshop CS4 Images displaying wrong

    Everytime i open a image file in Photoshop CS4 it looks all jumbled and has diagnol lines going through it. Even when i open just a blank file it has a huge black triangle going through it. How can i fix this?

  • HP 5550 web server doesn't show all required tabs

    Good afternoon! I have an issue with web server on hp 5550 Laserjet. Everything was good, but after reboot, it doesn't show all tabs such as "Information", "Setting", "Networking". It shows only "Home" and "Networking"... Do someone know how to fix t

  • "Find" tool not showing any results

    The "Find" tool isn't showing any results despite searching with test words that are in the document.  The "Advance Search Options" tool doesn't turn up results either.  I am using Reader XI.  Document properties show that the PDF Producer is "TypeRe

  • How to get rid of box around exported art

    I only use illustrator when I need to change something, so I have no idea what I am really doing. I have a logo in illustrator that has been saved as an eps file. When I import that eps file into another program, it comes in with a rectangle around t