How to change tone but not colors?

Hi,
I am a big fan of color fidelity - i.e. of preserving the colors as they were in reality when the picture was taken. I do not like for instance when a red sign in a building looks orange-red in my calibrated monitor. I have taken the steps to photograph the ColorChecker at both temperatures and create a profile with the DNG profile editor. In general, the colors look accurate, but once in a while, for some reason, the color is off (even with custom WB). This is a problem...
A related problem surfaces when I want to change the tone of a picture, be it because it is too dark or too light to begin with...or, a change in the contrast also. I am never sure if I am changing the color when I change e.g. the Exposure, the Blacks, the Brightness, the Contrast slider, the Tone Curve. As to what defines color, I am not even sure what constitutes a change of color: whether keeping the Hue but not the Saturation or the Brightness (in HSB coordinates) is enough to not change the color (at least its essence which seems to me is given by the Hue), or whether I need to preserve the Saturation as well as the Hue allowing the tonal changes to change the Brightness of the color only.
Once I get an agreement about these concepts from other people in this forum, then my obvious next question would be, which sliders or controls in which panels in Lightroom 2 can I use that would guarantee the not modification of color in my images (which might vary with the definition of color)?
It is very likely that I will get responses saying that the color is not defined by only its Hue, nor only its Hue and Saturation but by its Brightness as well. Why did I not consider that as an option to keep a color constant when making tonal changes? Simple: I do not see how I could change the darkness/lightness/contrast of an image if the HSB of each color must remain constant. If I keep all triplets constant in an image, then how can I modify that image?  Therefore I have deduced that at least one of each triplets' values MUST be allowed to change and those values are 1st Brightness and 2nd Saturation. Hue, I feel, is one aspect of color that must remain unchanged by tonal manipulations.
So, what are your thoughts on this, everybody?
Thanks,
Juan Dent

hI,
Thanks for the responses -- and I understand your points. However there is at least a scenario where one needs to have accurate color in a verifiable way:
     reproduction of art works
     reproduction of printed photographs
Agreeing with your comments, how can I achieve the above tasks, accurately? How can I measure my accuracy?
Thanks,
Juan

Similar Messages

  • How to change the selection background color of the selected item in the popup menu of the choice box ?

    How to change the selection background color of the selected item in the popup menu of the choice box ?
    By defaut, the selection background color likes "blue", but if I want it to be "yellow" for example, how should I do ?
    Thanks

    The id is applied by (I think) the skin class of the ChoiceBox. You don't need to define it.
    You have to apply the css in an external style sheet. You can apply the external style sheet to any parent of your choice box, or to the scene (the most usual way to do it).
    Example:
    import java.util.ArrayList;
    import java.util.List;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class ChoiceBoxTest extends Application {
      @Override
      public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Example 2");
        final ChoiceBox<String> choiceBox = new ChoiceBox<>();
        List<String> tempResult = new ArrayList<String>();
        for (int i = 0; i < 10; i++) {
          tempResult.add("Item " + i);
        choiceBox.getItems().setAll(tempResult);
        VBox root = new VBox();
        root.getChildren().add(choiceBox);
        final Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add("choiceBox.css");
        primaryStage.setScene(scene);
        primaryStage.show();   
      public static void main(String[] args) {
        launch(args);
    choiceBox.css:
    @CHARSET "UTF-8";
    #choice-box-menu-item:focused  {
    -fx-background-color: yellow ;
    #choice-box-menu-item .label {
    -fx-text-fill: black ;
    Message was edited by: James_D

  • How to change the line's color?

    In a linechart, if the backgroundColor of
    Application is not "#ffffff",there will be some white
    horizontal lines in the linechart. how to change the
    line's color?? thanks

    Hi, I hope this is what you are looking for:
    http://blog.flexexamples.com/2007/11/15/customizing-the-horizontal-grid-lines-in-a-flex-li nechart-control/

  • How to change the caret/selection color of text input controls?

    Hello JavaFX Community,
    i'm new to JavaFX. I'm using it since i saw the huge steps forward with version 2.0.
    I have the task to migrate a software from Swing to JavaFX. As a part of our corporate design, we used a special color for the caret and text selection. I couldn't find any information about changing the caret color in JavaFX 2, so i'd like to ask you and i'd be very thankful for an advise.
    There is a cross-post at StackOverflow:
    http://stackoverflow.com/questions/10057989/how-to-change-the-caret-color-in-javafx-2-0
    Thanks and best regards.

    This might be possible, but it is not trivial. You cannot do it with a standard API at this time, you will have to look into creating a skin that allows for these properties to be controlled.
    For example, the color of the caret is currently controlled in the TextFieldSkin (look for the "caretPath" property). Just forcing a color change in a subclassed skin is not so hard. Something like this:
    public class MyTextFieldSkin extends TextFieldSkin {
      public MyTextFieldSkin() {
        this.caretPath.fillProperty().unbind();
        this.caretPath.fillProperty().set(Color.RED);
    }However, it gets trickier if this color must be dynamic and if you want other things to be changed as well. It is a place to start though.
    Many of the skins methods and properties are 'protected' though, so atleast in Skin subclasses you have a lot of options to introduce new features and behaviour.

  • How to change the disabled value color of messageTextInput

    Hi,
    I have a requirement to change the value color of messageTextInput. And I had apply custom look and feel. For normal messageTextInput, I can change its color, but for disabled messageTextInput, the value is always gray out. I can't change its color.
    Could anyone tell me how to change it?
    Thanks,
    Eileen

    Eileen,
    This is the code u need to use in process request:
    OAMessageTextInputBean x = (OAMessageTextInputBean)webBean.findChildRecursive("<item id of message text input which have to disable>");
    //If item id of the next message text input is XXX, on which
    //u wanna set focus when user clicks on ur disables message text input
    x.setOnFocus("javascript:XXX.focus();");
    Now u can set CSS class.The above code will automatically set focus on field with item id XXX, when user clicks on it, thus not allowing user to enter anything in that message text input.
    I hope this helps.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • [solved] Changing date but not time

    Hello,
    I already searched the web but all examples how to change date involved changing time as well.
    date -s "7 April 2008 20:42:45"
    date -s "7 April 2008 20:42:45"
    I need a script that does the follow.
    1. Save the current date
    2. Change the date to a defined one (but not the time because that conflicts with NTP)
    3. Start a program
    4. Wait for the program to be closed to restore the original date saved in 1.
    How would you write such a script in Bash without changing the time?
    Last edited by orschiro (2013-04-07 21:22:52)

    Thanks for your replies. I did not know that time and date are inevitably connected to each other and that changing date does always mean changing time as well.
    @Trilby,
    I indeed want to circumvent a trial-period. I am working on a Linux compatibility version of Prezi Desktop which is no longer provided in an official version. Many people contacted me with issues they are facing that I cannot testify as I do not have a 'Pro' account for which one has to pay. I generally pay for software but in this special case I do not want to pay for an account realising that in fact I cannot use the software due to compatibility issues.
    As such, I already tried libfaketime but I failed to get it working with Adobe AIR 32bit on my 64bit system. I am aware that I am doing something that I ought not to do but I am not willed to pay for broken software.
    @moetunes
    [orschiro@thinkpad ~]$ date -s '7 April 2008'
    date: cannot set date: Operation not permitted
    Mo 7. Apr 00:00:00 CEST 2008
    You see, date -s would reset the time to 00:00 which is not what I was looking for. I want to save my current time to restore it again after closing the program.

  • How to change foreground and background color using CC SDK?

    Hello all,
    I am just starting to study the sdk (Mac CC). Currently, I am seeking the answer to change foreground and background color using CC SDK?
    Is it possible to do so? In addition, will the Image Mode such as RGB, CYMK or Grayscale be effecting such solution?
    Thanks in advance.

    These are NOT dropdown menus. They are dropdown LISTS.
    http://web.me.com/toad.hall/Demo1/Drop_DownMenus.html
    And from the links in the Google search you can learn that a list item has no style.
    And a dropdown list behaves differently from dropdown menus. Here's how it looks on Mobile Safari :

  • Reverse changes made but not published

    I’ve made three calls to Apple Care tech support who give me the IWEB support people but I’m not getting a satisfactory answer to my question. I built a nice little website for my pet sitting business using the IWEB application and was happy with it. But everyone complained I was not being found in any search engines and that I had to bypass the IWEB application and use an SEO tool to add “key” words into the script.
    I started out OK, but couldn’t do the whole site in one sitting including updating all the links etc., so I saved but DID NOT publish. I now no longer want to try and bypass the IWEB app because its just too confusing to me to try and make minor changes when I want to regarding the content and now the links are all screwed up because I was instructed to bypass Apple’s navigation bar and put in one with the SEO tool. Anyway, my question is, how can I revert back to my original site (which appears to the public) but not on the IWEB files I have to work with on my computer?
    I saved copies of the site before I tried to change it, but the Apple people say that the HTML files are gone and can’t be retrieved because I don’t have a copy on my IDisk anywhere. Not sure what that is. Other than starting from scratch and building an entirely new site, is there anyway to retrieve the html files from what I saved and be able to just copy them back into the IWEB application? I am a major computer dyslectic when it comes to understanding all this stuff, so I’m totally confused and would appreciate any help you can offer.
    Thank you very much.

    Welcome to the discussions.
    SammamishLady wrote:
    ...is there anyway to retrieve the html files from what I saved and be able to just copy them back into the IWEB application?
    No — only iWeb's Domain file can be opened in iWeb. See this Apple doc on How to back up MobileMe data. It says:
    “Any websites you have published with iWeb should still be available within iWeb. iWeb stores everything in a Domain file, normally located in the ~/Library/Application Support/iWeb folder (although it can be moved). If you no longer have this file, you can view your currently published pages and manually recreate them within iWeb, but *there is no way to import published pages back into iWeb*. You can manually back up the Domain file, or use Backup to back it up.”
    Consider using another site builder — weebly.com is a popular, free web-based builder which works via drag & drop in your web browser. Here are some links to just a few of the features Weebly provides:
    _Visitor Stats & Search Engine Optimization_
    Sub-Pages
    _Photo Slideshows_
    _Photo Galleries_
    E-commerce
    And Weebly sites are now mobile friendly — click here:
    http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html   http://blog.weebly.com/2/post/2010/12/your-websites-are-now-mobile-friendly.html

  • How To Change FONTS in NOTES

    Really does anyone know how to change the Font in NOTES? I have not seen a resolve in the discussions

    Hey folks there is a simple way to enlarge your fonts in notes... Go to SETTINGS on your iPad, then GENERAL, scan down at the bottom to ACCESSIBILTY, then LARGE TEXT. Select your text size and you're done.
    Re-open Notes and you will see the change.  Have fun with it!!
    Jae

  • How to change the Hyper links color in the XML form

    HI SDNs
    Do u have any idea how to change the hyperlink color in the xml form. My requirement is as follows.I have created xml form by using xml template and i displayed this xml form by using Km document iview.  I need tochange the hyper link color in the xml form content. I dont want to go for manual process by editing the xml form. because i have several hundreds of xml forms.
    Appreciate if you give suggestion.
    Thanks
    Ramana

    Hi Ramana,
    The most convenient way to change the hyper links is by using the Theme Editor. Go to System Administration --> Portal Display --> Select Theme --> Component-Specific Styles --> Links --> Function/Result Link.
    Hope this helps.
    Kind regards,
    Joost

  • How to change selected pane's color in a JTabbedPane ?

    Hi there !
    I'm tryin' to change selected pane's color (default : light gray) in a JTabbedPane.
    I tried to use the following code :
    UIManager.put("TabbedPane.selected", new Color(255,255,200));
    but it doesn't seem to work.
    Any idea ?
    Thanks.

    For me, there is no TabbedPane.selected filed in TabnedPaneUI....
    try with
    UIManager.put("TabbedPane.highlight", new Color(255,255,200));
    or
    UIManager.put("TabbedPane.background", new Color(255,255,200));

  • How to change the JFileChooser's color on the title?

    I have a open JFeileChooser and I don't know why but the color changed to green in the open dialog window.

    you can have a limited color range like this
    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JDialog.setDefaultLookAndFeelDecorated(true);
        JFrame f = new JFrame();
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JFileChooser  fc = new MyFileChooser(".");
        f.pack();
        f.setVisible(true);
        fc.showOpenDialog(f);
      class MyFileChooser extends JFileChooser
        public MyFileChooser(String currentDirectoryPath)
          super(currentDirectoryPath);
        protected JDialog createDialog(Component parent) throws HeadlessException
          JDialog myDialog = super.createDialog(parent);
          myDialog.getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
          return myDialog;
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }other options to try
    NONE
    FRAME
    PLAIN_DIALOG
    INFORMATION_DIALOG
    ERROR_DIALOG
    COLOR_CHOOSER_DIALOG
    FILE_CHOOSER_DIALOG
    QUESTION_DIALOG
    WARNING_DIALOG

  • How to change the Find highlight color

    I am trying to find out if there is a way to change the Find Highlight color in office 2013.
    Every time I search for a word or anything it uses a light yallow to highlight that line or word, and I woudl like to replace the yellow with like a teal or a green or some other color that I'm not using already in my Word document. This way I can find out
    were it is telling me It is because I have a lot of stuff already highlighted yallow, and when I click find and search for something in the Navigation window and it finds it. It also puts it as a lighter yellow and it confuses me.

    Hi,
    As far as I know, we can't change the highlight color when using Find in Word. The highlight color is fixed.
    As a workaround, you can try to use Advanced Find instead which will show the search result with a different color.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • How to restore deleted, but not erased, data?

    I just restored my iphone, from an older backup.  itunes says that the information is deleted from the device, but not erased. How do I recover this deleted information?

    I have never seen a message where iTunes states that data is deleted but it has not been erased.
    The only way that you can recover that data - and data is a somewhat vague term because it can refer to so many different things such as documents, contacts, notes, etc. - is to restore from a backup that contains that data or if you have a local copy of that data stored somewhere on your computer you can import it again via File Sharing, email, DropBox, etc.
    So I guess at this point the next question is what data are you trying to recover?

  • Quickest way to change speed but not clip duration

    I'm trying to determine the fastest method for changing the speed
    of a clip already in the timeline, but not the clips duration. Primarily, slowing a clip down.
    The best I've come up with so far is to put the timeline playhead over the
    clip and hit X to get the clips IN and OUT points placed in the timeline. Then,
    drag the clip into the Browser, effectively making a copy of it there. Then bring the clip into the Viewer, then hit APPLE J to bring up the speed change window, affect the change, then overwrite the change you've made in the viewer back down into the timeline where you placed the original IN and OUTS. Seems like alot of step.
    Is there a faster way? Any change I try to make in the timeline itself results
    in a clip duration change. The only other way I've found it to use the time remap tool put that is even more complicated and is alot less exact when trying to make something, say, 50% slower.
    Any input would be appreciated.

    Another, close but not quite there method I've tried is the TIME REMAP tool
    that lives with the SLIP AND SLIDE.
    I can affect speed changes, and see what percentage speed change I'm
    trying to make, but it wants to change speed on both the left and right side
    of the clip. In other words, I can't place the timeline playhead or Time remap tool at the beginning or end of the clip and only effect the speed of the entire
    clip unless there is no clip adjacent to the clip I'm trying to change.
    Otherwise it changes the speed as I want for 99% of the clip and then during
    the last several frames I've accidentally sped up up those frames. I can't position it to just change the speed for the entire clip.

Maybe you are looking for

  • From Palm Desktop to iPod Touch

    I have many years of contacts and calendar entries in my Palm Desktop (& Palm PDA). I want to migrate these contacts and calendar into my new iPod Touch, using it as my PDA going forward.

  • How to have the spacebar do one thing on one frame and a different thing on a over?

    I am making a game using flash, and I would like it so you could use the spaebar to skip the story. But the spacebar is also the characters ablity. How is this possible to do. Whenever I try I get lots of errors. I am new to action script 3, please b

  • Dwg, 2d - dxf, files opening thru web dms

    Hello, To open acad drawing files dwg, dxf etc. in viewer thru web dms what needs to be done. (what is the application exe to use ECL viewer) Thanks. Anirudh,

  • R/3 Plug in

    Hello Guys, Can anyone explain me How i can check R/3 plug in in R/3? do they have some functionality?? Edited by: latha reddy on Feb 6, 2008 7:32 AM

  • X230 Table doesn't detect DVD Multi IV Ultrabay Slim in UltraBase Series 3

    We bought two X230 Tablets for two Professors of our University and I'm responsible for getting them ready to use. Unfortunately the DVD burner isn't recognized in the UltraBase Series 3 that we intended to use together with the X230. I tried it with