Help me evaluate colours

I've built this site:
http://www.judithblacklock.com
On my customer's monitor all colours look pale and washed out
(she has a brand new mac) and I have put this down to the monitor
no having been calibrated properly.
However, yesterday I added this image:
http://www.istockphoto.com/file_closeup/celebrations-holidays/7321477-wedding-reception-ta ble-setting.php?id=7321477
My customer is telling me that the image at iStock looks
great, while the same image (although cropped by me) looks paler on
her website.
Does anyone have any thoughts on this…?
Thanks

They look identical to me, PC - unusual to see the sun in
London (o:
Jo
"Yello L" <[email protected]> wrote in
message
news:gfc8nh$161$[email protected]..
> I've built this site:
http://www.judithblacklock.com
>
> On my customer's monitor all colours look pale and
washed out (she has a
> brand
> new mac) and I have put this down to the monitor no
having been calibrated
> properly.
>
> However, yesterday I added this image:
>
http://www.istockphoto.com/file_closeup/celebrations-holidays/7321477-wedding-re
> ception-table-setting.php?id=7321477
>
> My customer is telling me that the image at iStock looks
great, while the
> same
> image (although cropped by me) looks paler on her
website.
>
> Does anyone have any thoughts on this??
>
> Thanks
>

Similar Messages

  • Need some help with the colour profile please. Urgent! Thanks

    Dear all, I need help with the colour profile of my photoshop CS6. 
    I've taken a photo with my Canon DSLR. When I opened the raw with ACDSee, the colour looks perfectly ok.
    So I go ahead and open in photoshop. I did nothing to the photo. It still looks ok
    Then I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    And the colour started to get messed up.
    And the output is a total diasater
    Put the above photo side by side with the raw, the red has became crimson!!
    So I tried the other option, Use the embedded profile
    The whole picture turns yellowish in Photoshop's interface
    And the output is just the same as the third option.
    Could someone please guide me how to fix this? Thank you.

    I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    always use the embedded profile when opening tagged images in Photoshop - at that point Photoshop will convert the source colors over to your monitor space correctly
    if your colors are wrong at that point either your monitor profile is off, or your source colors are not what you think they are - if other apps are displaying correctly you most likely have either a defective monitor profile or source profile issues
    windows calibrate link:
    http://windows.microsoft.com/en-US/windows7/Calibrate-your-display
    for Photoshop to work properly, i recall you want to have "use my settings for this device" checked in Color Management> Device tab
    you may want to download the PDI reference image to check your monitor and print workflows
    and complete five easy steps to profile enlightenment in Photoshop
    with your settings, monitor profile and source profiles sorted out it should be pretty easy to pinpoint the problem...

  • Help on changing colour please....

    I am doing a paint package that involve scribbling, I have the basic class and I have setted up the windows interface....... I want to allow the user to choose the colour of the line..... I have setted up the button but I am not sure how should I code to set the colour when the button is pressed..... I will leave my codes here......
    DrawingTools.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class DrawingTools {
    public static void main (String [] args) {
         Toolkit tk = Toolkit.getDefaultToolkit(); // get system dependent information
    Dimension dim = tk.getScreenSize(); // encapsulate width and height of system
    JFrame f = new DrawingToolFrame();
    f.setSize(800, 550);
    f.setTitle("Drawing Tool v1.10");
    f.setIconImage(tk.getImage("Paint.gif"));
    f.setVisible(true);
    f.setResizable(false);
    class DrawingToolFrame extends JFrame implements ActionListener {
    private JCheckBox checkNormal, checkBold, checkDotted, checkSpray;
    private JButton boldButton, dottedButton, sprayButton;
    private JButton blackButton, blueButton, yellowButton, redButton, greenButton, houseButton, tvButton, starButton;
    private ScribblePanel scribblePanel;
    private JButton scribbleButton, undoButton, newButton, quitButton;
    private JMenuItem newItem, quitItem, undoItem, houseItem, tvItem, starItem,/* normalItem,*/ boldItem, dottedItem, sprayItem, blackItem, blueItem, redItem, yellowItem, greenItem;
    public DrawingToolFrame() {
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    dispose();
    System.exit(0);
    Container contentPane = getContentPane();
    JMenuBar menuBar = new JMenuBar();
         setJMenuBar(menuBar);
         JMenu fileMenu = new JMenu("File");
         newItem = new JMenuItem("New");
         newItem.setMnemonic(KeyEvent.VK_N); //add Alt-N to New short-cut
         newItem.addActionListener(this);
         fileMenu.add(newItem);
         quitItem = new JMenuItem("Quit");
         quitItem.setMnemonic(KeyEvent.VK_Q); //add Alt-Q to Quit short-cut
         quitItem.addActionListener(this);
         fileMenu.add(quitItem); // some code for menu.......
         menuBar.add(optionMenu);
    JPanel p = new JPanel();
    ImageIcon scribbleIcon = new ImageIcon("Scribble.gif");
    scribbleButton = new JButton("Scribble", scribbleIcon);
    scribbleButton.setMnemonic(KeyEvent.VK_S); //add Alt-S to Undo short-cut
    scribbleButton.setToolTipText("Click this button and you can draw free hand lines.");
    p.add(scribbleButton);
    p.add(Box.createHorizontalStrut(20));
    ImageIcon undoIcon = new ImageIcon("Undo.gif");
    undoButton = new JButton("Undo", undoIcon);
    undoButton.setMnemonic(KeyEvent.VK_U); //add Alt-U to Undo short-cut
    undoButton.setToolTipText("Undo the last step");
    p.add(undoButton);
    p.add(Box.createHorizontalStrut(20));
    ImageIcon newIcon = new ImageIcon("New.gif");
    newButton = new JButton("New", newIcon);
    newButton.setMnemonic(KeyEvent.VK_N); //add Alt-N to New short-cut
    newButton.setToolTipText("Make a new Drawing");
    p.add(newButton);
    p.add(Box.createHorizontalStrut(20));
    ImageIcon quitIcon = new ImageIcon("Door.gif"); //add icon to button
    quitButton = new JButton("Quit", quitIcon);
    quitButton.setMnemonic(KeyEvent.VK_Q); //add Alt-Q to exit short-cut
    quitButton.setToolTipText("Click to Exit");
    p.add(quitButton);
    undoButton.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e) {
    scribblePanel.undo();}});
    scribbleButton.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e) {
    scribblePanel.repaint();}});
    newButton.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e) {
    scribblePanel.repaint();}});
    quitButton.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e) {
    System.exit(0);}});
    contentPane.add(p, "South");
    p = new JPanel();
    p.setLayout(new BoxLayout(p, BoxLayout.Y_AXIS));
    p.add(Box.createVerticalStrut(10));
    ImageIcon boldIcon = new ImageIcon("Bold.gif"); //add icon to button
    boldButton = new JButton("Bold", boldIcon);
    p.add(boldButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon dottedIcon = new ImageIcon("Dotted.gif"); //add icon to button
    dottedButton = new JButton("Dotted", dottedIcon);
    p.add(dottedButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon sprayIcon = new ImageIcon("Spray.gif"); //add icon to button
    sprayButton = new JButton("Spray", sprayIcon);
    p.add(sprayButton);
    contentPane.add(p, "East");
    p = new JPanel();
    p.setLayout(new BoxLayout(p, BoxLayout.Y_AXIS));
    p.add(Box.createVerticalStrut(10));
    ImageIcon dIcon = new ImageIcon("Black.gif"); //add icon to button
    blackButton = new JButton("Black", dIcon);
    p.add(blackButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon eIcon = new ImageIcon("Blue.gif"); //add icon to button
    blueButton = new JButton("Blue", eIcon);
    p.add(blueButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon fIcon = new ImageIcon("Red.gif"); //add icon to button
    redButton = new JButton("Red", fIcon);
    p.add(redButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon gIcon = new ImageIcon("Yellow.gif"); //add icon to button
    yellowButton = new JButton("Yellow", gIcon);
    p.add(yellowButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon hIcon = new ImageIcon("Green.gif"); //add icon to button
    greenButton = new JButton("Green", hIcon);
    p.add(greenButton);
    p.add(Box.createVerticalStrut(30));
    ImageIcon houseIcon = new ImageIcon("house.gif");
    houseButton = new JButton("House", houseIcon);
    houseButton.setToolTipText("Click to add a house in the picture!");
    p.add(houseButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon tvIcon = new ImageIcon("tv.gif");
    tvButton = new JButton("Television", tvIcon);
    tvButton.setToolTipText("Click to add a Television in the picture!");
    p.add(tvButton);
    p.add(Box.createVerticalStrut(10));
    ImageIcon starIcon = new ImageIcon("star.gif");
    starButton = new JButton("Star", starIcon);
    starButton.setToolTipText("Click to add stars in the picture!");
    p.add(starButton);
    contentPane.add(p, "West");
    scribblePanel = new ScribblePanel();
    contentPane.add(scribblePanel, "Center");
    private JButton addJButton(String text, Container container) {
    JButton button = new JButton(text);
    container.add(button);
    return button;
    public void actionPerformed(ActionEvent e) {
    Object source = e.getSource();
    if (source instanceof JMenuItem) {
    String arg = e.getActionCommand();
    if (arg.equals("Undo"))
    scribblePanel.undo();
    else if (arg.equals("New"))
    scribblePanel.repaint();
    else if (arg.equals("Quit"))
    System.exit(0);
    ScribblePanel.java
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.image.BufferedImage;
    public class ScribblePanel extends JPanel implements MouseListener, MouseMotionListener {
    private int lastX, lastY;
    private static final int PANEL_WIDTH = 800;
    private static final int PANEL_HEIGHT = 550;
    private Stroke stroke;
    private Line2D line;
    private BufferedImage currImage, oldImage, tmpImage;
    public ScribblePanel() {
    super();
    setBackground(Color.white);
    currImage = new BufferedImage(PANEL_WIDTH, PANEL_HEIGHT,
    BufferedImage.TYPE_INT_ARGB);
    oldImage = new BufferedImage(PANEL_WIDTH, PANEL_HEIGHT,
    BufferedImage.TYPE_INT_ARGB);
    addMouseListener(this);
    addMouseMotionListener(this);
    line = new Line2D.Double(0,0,0,0);
    stroke = new BasicStroke(10, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND);
    public void paintComponent (Graphics g) {
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    g2.drawImage(currImage, 0, 0, this);
    //scribblePanel.drawAll(g);
    public void undo() {
    tmpImage = currImage;
    currImage = oldImage;
    oldImage = tmpImage;
    repaint();
    public void moveTo(int x, int y) {
    lastX = x; lastY = y;
    /*public void lineTo(int x, int y) {
    Graphics2D g2 = currImage.createGraphics();
    line.setLine(lastX, lastY, x, y);
    g2.setPaint(Color.blue);
    g2.setStroke(stroke);
    g2.draw(line);
    moveTo(x,y);
    g2.dispose();
    repaint();
    public void lineTo(int x, int y) {
         Graphics2D g2 = currImage.createGraphics();
         line.setLine(lastX, lastY, x, y);
         /*if blueButton pressed
         g2.setPaint(Color.blue);
         else if redButton pressed
         g2.setPaint(Color.red);
         else if yellowButton pressed
         g2.setPaint(Color.yellow);
         else if greenButton pressed
         g2.setPaint(Color.green);
         else g2.setPaint(Color.black);*/
         /*if boldButton pressed
         g2.setStroke(stroke);
         else if dottedButton pressed
         g2.setStroke(dotted);
         else if sprayButton pressed
         g2.setStroke(spray);*/ // these are my imagination...... i knoe they
    // are wrong but what should I do?????please
    // help
         g2.setPaint(Color.blue);
         g2.draw(line);moveTo(x,y);
    g2.dispose();
    repaint();
    public void mousePressed(MouseEvent e) {
         oldImage.setData(currImage.getData());
    moveTo(e.getX(), e.getY());
    public void mouseReleased(MouseEvent e) {}
    public void mouseClicked(MouseEvent e) {}
    public void mouseEntered(MouseEvent e) {}
    public void mouseExited(MouseEvent e) {}
    public void mouseDragged(MouseEvent e) {
    lineTo(e.getX(), e.getY());
    public void mouseMoved(MouseEvent e) {}
    BTW...... if I want to use the SetStroke (for thicker line, dotted line) method in the Graphics2D package what should i do?????

    Two obvious routes: 1. Have a variable currentColor or somesuch which you set when the user clicks a button. Then before drawing the line call g.setColor(currentColor). 2. If you have access to the Graphics object when the button is clicked, call setColor directly.

  • Urgent:- Help On Evaluate Variable Required

    Hi,
       I have a variable(suppose name:- #var_getCurrDay) which holds the recent day.Now I want to use the In operator which will check today's day is between
    saturday,sunday etc. or not?
    So I have put  the variable in Evaluate variable Type.Use In operator .and for Value I have used (SATURDAY,SUNDAY) and later used ('SATURDAY','SUNDAY').But I failed both the time.
    So please help me how can I use the In operator?
    Thanks
    Anindya

    Hi,
    It  seems that the problem was that the query was attaching a space character at the end of the fetched string for some reason. Adding a TRIM() function on top of the TO_CHAR did the trick.
    i.e evaluate variable is fine but refresh variable get wrong data.
    Thanks for suggestion SH.
    But I'm unable to find the option where I can select that your answer is correct and solve my problem.
    Pls help.

  • Help needed changing colour for each top Parent menu bar

    Can anyone help me I need the change the background of each
    parent menu block. with the child block keeping the same colour.
    but having a tint of the same colour in hover state.

    Can anyone help me I need the change the background of each
    parent menu block. with the child block keeping the same colour.
    but having a tint of the same colour in hover state.

  • Help - How to colour columns in interactive reports

    Hi,
    How do I colour columns in an interactive report ?
    I have created a solution to help student explore the many thousands of courses in the UK - with the results showing in an interactive report:
    https://production001-demandanalysis.db.em1.oraclecloudapps.com/apex/f?p=20300118:1
    (To get to results, interactive report, click a subject and then pick a subject from the course cloud.)
    What I want to achieve is the colouring of the columns - as currently shown - but programatically - without the user being able to see all the highlights I had to enter to achieve this.
    Any help greatly appreciated.
    Steve
    Apex version 4.2.2

    U can change the sql code for report in following way to color column.
    select
    AFFIRMATION_STATUS as AFFIRMATION_STATUS ,
    AFFIRMATION_DATE as AFFIRMATION_DATE,
    case when AFFIRMATION_STATUS = 'Affirmed' then 'green'
          when AFFIRMATION_STATUS = 'Rejected' then 'red'
        end the_color
    from MAIN_INTERFACE
    so it will generate a report with three columns viz affirmation_status and affirmation_date and the_color . Now open the_color column in report attribute tab.In column formating put "<span style="color:#THE_COLOR#;font-weight:bold;">#AFFIRMATION_DATE#</span>". If value of affirmation_status is affirmed then affirmation_date's value will come in greeen color. If its rejected , it will come in red color.

  • Help with Part Coloured B&W Photos

    Hi Guys,
    I am a bit of a novice with PE 8 and was wondering is someone could give me a few clues where to begin with part colouring a b&w photo.
    What I would like to do is take a picture of a stndalone tree that is in blossom. I want the tree trunk and branches in b&w along with the background but want the blossom to remain in its natural colour.
    Like I say I don't really know where to begin some clues would be very much appreciated.
    Regards,
    Den

    image23,
    Open picture
    Duplicate background layer
    Open a hue/saturation adjustment layer above this. To do this, click on the black/white circular icon at the bottom of the layers palette
    Slide the saturation slider all the way to the left
    On the adjustment layer, left click the layer mask (the white rectangle)
    Set your foregrond color chip (lower left) to black
    Access the brush tool and with the black brush paint where you want the color to appear
    TIPS:
    If you go too far, paint with a white brush to correct
    The bracket keys [ & ] can be used to alter the brush size
    x on the keyboard toggles between black & white

  • Help changing border colours. Indesign.

    Hi, Thank you for taking the time to look at this post! I have a border made up of different shapes all colour blue but with different tones. I want to change these to say yellow but keep the tones as in some are light some are dark. Is it possible to do this one go or do I have to alter each one separately?
    All the best,
    Bradaz21

    This is a screenshot of the swatches and the layout. Each shape has its own corresponding colour on the swatch, some colours I've repeated elsewhere.

  • Help to evaluate ECC6 SAP Discover System

    Hi,
    I have access to the Online SAP Discovery system for ECC6, but SLCM or Campus is not activated.
    Rather than install IDES locally, is there a SAP Online Discovery system with the latest version of Campus.
    Anyone who can help will be much appreciated
    Thanks
    Ian

    The user base prerequisites for FPN are as menioned here:
    http://help.sap.com/saphelp_nw70/helpdata/EN/43/a7cd90ba6f17b4e10000000a1553f6/frameset.htm
    Hope this clarifies.
    Also you might want to go through: http://help.sap.com/saphelp_nw70/helpdata/EN/43/23dc79cb0e0d24e10000000a1553f7/frameset.htm (FPN Concepts and Planning)

  • Help please. Colour correction

    Hi guys, I recently shot a video and when my camera was pointed toward the sun there appears to be a bluey/purple ring around the sun. I really want to get rid of it but i can't seem to figure out how. Any ideas?

    sarahkatemcaleer wrote:
    … appears to be a bluey/purple ring around the sun. I really want to get rid of it…
    I assume, in the scopes it's a flat-line, right?
    (=highly over exposured, just yelling "WHITE!").
    What about composing a white circle 'over' it?
    you could blurr the borders to transparent, so the overlay is better 'integrated'.
    a bit tricky, if this is a handheld shot ... (it is, right?)
    btw: lucky you, you haven't killed the chip of your cam!
    sun, lens, ants … you know

  • How to put ZEBRA color in F4 Search help

    My Requirement:
    Suppose I am having a search help with the following data.
    MATNR
    SLNO
    OPERN
    PREHT
    A
    1
    A1
    X
    A
    2
    A2
    A
    3
    A3
    X
    A
    4
    A4
    B
    1
    B1
    B
    2
    B2
    B
    3
    B3
    C
    1
    C1
    C
    2
    C2
    Now I want to display the Search help with two colours [ZEBRA]
    as shown above. The criteria will be defined by "Group by MATNR"
    as shown above.
    " What I did till now.
    SELECTION-SCREEN:
         BEGIN OF BLOCK bl WITH FRAME TITLE text-001.
    PARAMETERS:
         s_matnr    TYPE matnr        OBLIGATORY,     " Material Number
        s_matkl      TYPE matkl        OBLIGATORY.     " Material Group
    SELECTION-SCREEN:
       END OF BLOCK bl.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr.
       PERFORM f4_help_for_material USING 'S_MATNR'.     " Search Help Working Fine
    *******F4 Help **********
    FORM f4_help_for_material USING  l_dynprofield.
       TYPES: BEGIN OF str_mat_oper,
                 matnr  TYPE zpp_oper_master-matnr,
                 slno  TYPE zpp_oper_master-slno,
                 opern  TYPE zpp_oper_master-opern,
                 preht  TYPE zpp_oper_master-preht,
              END OF str_mat_oper.
       DATA: it_mat_oper TYPE STANDARD TABLE OF str_mat_oper INITIAL SIZE 0,
             wa_mat_oper TYPE str_mat_oper.
       SELECT * FROM zpp_oper_master
       CLIENT SPECIFIED INTO CORRESPONDING FIELDS OF TABLE it_mat_oper
       WHERE mandt = sy-mandt
       ORDER BY matnr slno ASCENDING.
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
         EXPORTING
           retfield    = 'MATNR'
           dynpprog    = sy-repid
           dynpnr      = sy-dynnr
           dynprofield = l_dynprofield
           value_org   = 'S'
         TABLES
           value_tab   = it_mat_oper.
    ENDFORM.                    " F4_HELP_FOR_MATERIAL
    Thanks in advance
    Satpathy

    Hi Satpathy,
    Ok...
    Then try some thing like this....
    Step1: call a subscreen whenever F4 event triggers: use CALL SCREEN...
    Step2: In that subscreen display an ALV (REUSE_ALV_GRID_DISPLAY)and while displaying assign colors to the rows based on the MATNR
    Step3: Enable user command event to capture the selected row value and pass back this to the req field.
    Srikanth.

  • Mac book pro stopped printing in colour and is now printing a grainy image instead.  How to remedy this situation

    My Mac Book Pro (Retina) was printing in colour on a shared printer at the office.  It is now printing in Black and White with a very grainy blurred image.  Will the ColorSync Utility be of any help?  The colour option isn't in the print prompt when printing from iphotos.  Any advice would be appreciated.  thank you

    Hello Courious7,
    It sounds like you are unable to print in color but it used to work without issue. Assuming no changes have been made to the printer by the IT department, these troubleshooting steps should lead you to a resolution:
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/ts3147
    Follow these steps until the issue is addressed:
    Make sure that the printer is powered on, has ink / toner, and that there are no alerts on the printer’s control panel. Note: If you cannot clear an alert on the printer's control panel, stop here and check the printer's documentation or contact the manufacturer for support.
    Ensure the printer is properly connected to a USB port on the Mac or AirPort base station / Time Capsule. If the printer is a network-capable printer, make sure that it is properly connected to your home network.
    Use Software Update to find and install the latest available updates. If an update is installed, see if the issue persists.
    Open the Print & Scan pane or Print & Fax (Snow Leopard) pane in System Preferences.
    Delete the affected printer, then add the printer again.
    If the issue persists, try these additional steps:
    Reset the printing system, then add the printer again.
    If the issue still persists, reset the printing system again.  Download and install your printer's drivers. Then, add the printer again.
    Contact the printer vendor or visit their website for further assistance.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • HP Photosmart B109n-z (printing problem) please help

    Hi all,
    I have the HP Photosmart B109n-z printer and have it set up wirelessly and it works fine I've had no problems with it. 
    The other day the black ink stopped working - the cartridge isn't empty but it's no longer prinking black on any documents.  I have since put all new cartridges in, it recognises them all, including the black one, and if I'm printing something like a word document then it moves as if printing but the page comes out blank - no black ink is used.
    I work for myself and work from home so need to get this resolved asap.
    I've checked the cartidge - it's good.
    I've checked the connection and print cartridge bay - they're clean. 
    Please help.
    The colour is working fine.
    The black ink issue is the same whether printing, scanning, or copying.
    And I have tried turning everything off and on again!!!
    This question was solved.
    View Solution.

    Hi,
    You might try Solution 5 in the troubleshooting document I am linking here:
    Ink Quality Troubleshooting
    This will show the colors that are printing.  There are also addtional troubleshooting steps to follow
    Say Thanks by clicking the Kudos Star in the post that helped you. Please mark the post that solves your problem as Accepted Solution.
    I am employed by HP

  • 16mm / 8mm Footage - Colour Correction

    Hi all,
    I have just had some 16mm and 8mm footage telecined to DVD.
    Unfortunately the film was old and has lost some colour. I have been playing with the colour correction filters but just wondered if there is a quick fix filter than will help raise the colours from what is mostly a redish/pinkish picture.
    Probably a silly question but I thought some body may have created a preset for this problem.
    Thanks in advance
    J

    Magic Bullet from redgiantsoftware.com has some presets...and costs about $300. Film Effects from www.nattress.com has some presets, and costs $99.
    BUT!!!
    They are mainly presets for effect. Film look or cepia...not correction. Correcting color is always VERY different from clip to clip, so presets can't really be made. You should jsut play with the 3-way color corrector and see what you can do.
    Shane

  • Need Help With Spreadsheet Design

    Hi,
    I write about diabetes on various Internet Forums and am currently involved in testing various blood glucose meters to determine the accuracy of the different makes/models. I am trying to design a spreadsheet in Appleworks to help me evaluate the meters but have very little experience with spreadsheets so am finding it tough going.
    In comparing the various blood glucose values delivered by the meters I am trying to come up with a way to automatically compare 2 readings and then display how much a particular reading is above or below another percentage wise. The difficulty is that a particular meter might sometimes display a value higher than another one time, and lower than another the next time so I'm not sure how to design the speadsheet to automatically calculate the percentages.
    For instance in sample one Meter A reads 115mg/dl and Meter B reads 87 mg/dl so by dividing the 115 into 87 I can determine that Meter A is reading 24% higher than Meter B. But then in sample two Meter A reads 89 mg/dl while Meter B reads 121 mg/dl so in this case Meter B is reading 26% higher than Meter A.
    Is there a way to structure the spreadsheet so that it can compare the two readings and then based upon which one is higher divide the result into the lower one can come up with a percentage?
    Thanks!
    Winston

    Hi Winston,
    Leaving aside any discussion of the actual test design, here's a rundown of how to make the spreadsheet do (most of) what you want it to do.
    What I want the spreadsheet to do is to accept the data from meter 1 and meter 2 in side by side columns of cells. I next want the spreadsheet to compare the 2 bG values obtained from the same blood sample with these meters to one another and then divide the smaller value by the larger value to determine the amount in percent that one meter is higher or lower than the other.
    This division (r/R) compares the smaller value (r) to the larger (R) and reports the result as a fraction.
    eg. 75/100 = 0.75 The smaller reading is 75% of the larger reading, or the smaller reading is 25% lower than the higher reading.
    But that does not mean the higher reading is 25% higher than the lower. That percentage is given by comparing the larger reading to the smaller (R/r). For the same pair of readings:
    100/75 = 1.33.. The larger reading is 33% higher than the smaller.
    As the percentages will be listed in columns labeled "Meter x higher", the R/r division is the appropriate one.
    This is comparison is complicated by the fact that meter 1 will sometimes return the higher of the two readings, and at other times meter 2 will be higher. Thus it's not a simple matter of asking the spreadsheet to divide the result of meter 1 by the result of meter 2 each and every time or vice versa.
    Next on the agenda I want the spreadsheet to put the result obtained by the above calculation in one or the other of two additional columns of cells. In other words the spreadsheet will compare the value of meter 1 to meter 2, divide the smaller value by the larger value to determine percentage, and finally place the result obtained in one of two additional columns of cells. One of these additional columns of cells would be labeled Meter 1 Higher and the other would be labeled Meter 2 higher.
    All of the formulas given previously will make a comparison.
    Niel's and Barry's report the percentage by which the higher reading is higher than the lower.
    Brie's and Terry's report the percentage by which the lower reading is lower than the higher.
    All put the results into the same cell (column) without regard to which reading is highest. (Barry's set includes labels to identify the higher meter.)
    Here's mine again, with revisions to place the results into separate columns:
    Labels in Row 2: C2: Meter A, D2: Meter B, E2: A Higher, F2: B Higher
    Tests results in Row 3, Meter A in C3, Meter B in D3
    Comparison results in E3 and F3
    E3: =IF(C3<D3,"",C3/D3-1) Set the Number Format of this cell to percent.
    F3: =IF(D3<C3,"",D3/C3-1) "
    Note: the IF() statement suppresses the result in the column reporting "is higher" results for the meter with the ;ower reading. Written as above, the formulas will report in both columns where both meters show identical readings.
    Note2: As written, the formulas will return a #DIV/0! error if no results have been entered on that line. The version below suppresses any results until readings have been entered in column D.
    E3: =IF(D3,IF(C3<D3,"",C3/D3-1),"") Set the Number Format of this cell to percent.
    F3: =IF(D3,IF(D3<C3,"",D3/C3-1),"") "
    Roughly 1,000 tests will be performed over a several month timespan and all the meter readings referred to above will each be compared by the spreadsheet.
    The default size of an AppleWorks spreadsheet is 40 columns by 500 rows. Go Format > Document... to increase the number of rows to 1050 to allow room for 'roughly 1000 tests.'
    For 1000 tests, fill the formulas above down through rows 3..1002 (aasumed in examples below).
    Next I want the spreadsheet to examine all the cells in which meter 1 returned the higher result and perform the following calculations:
    lowest percentage over meter 2 obtained
    highest percentage " "
    The second is easy: =MAX(E3..E1002)
    Place the formula where you want this result reported.
    The first runs into a problem: empty cells, or those with non numeric data are evaluated numerically as "0" by the MIN() function. There is a workaround.
    Use an empty column to the right of the active part of the spreadsheet. (I've arbitrarily chosen column M)
    M3: =IF(E3>0,E3,1000)
    Fill down M3..M1002
    This copies all greater than zero values into column M, and inserts a value of 1000 wherever the value in column E is 0.
    The minimum value in this column (which is also the non-zero minimum of column E) is given by:
    =MIN(M3..M1002)
    Place the formula where you want this result reported.
    number of identical readings obtained
    I'm assuming you mean 'identical differences' in terms of percent higher.
    There are a couple of difficulties here:
    1. AppleWorks does not include a MODE() function which would extract the number appearing with the greatest frequency.
    2. What constitutes "identical" depends on the (mathematical) precision of the results. AppleWorks can display results to 11 significant places (eg. 12.345678901), and actually does the calculations to a few more places than that. Given that precision, many results that are not significantly different willl not be identified as "identical."
    Probably doable, but more detail needed before jumping in.
    average percentage " "
    average deviation
    Not sure what you're asking with these. Can you elaborate?
    Regards
    Barry

Maybe you are looking for

  • Can't delete old backup - says it is in use

    I just replaced my iPhone 4 with a 6 (yay!).  I loaded the 4 iCloud backup onto the 6 (two days ago) and now the 6 is backing up as a separate phone backup on iCloud.  I want to delete the old backup.  However, when I try to delete the old 4 backup i

  • Video To Play in PDF

    Hi There! I have a PDF that contains a video and when I try to let the video play it gives the following error: 'To view the Flash technology content in this PDF file, please install the required version of Flash Player.' I have downloaded the latest

  • How to use notify-osd with qt apps in openbox

    Hi, i'm using openbox and Notify-osd. With qhte GTK apps it works fine and i have no problems. But, all the QT apps don't work with notify-osd. Is there a way to get it work? I've tried editing the  this /usr/share/dbus-1/services/org.freedesktop.Not

  • Generates graph for images

    hi... sorry if diz Q oready out sumwhere. any1 know how to generate graph for an image (eg: gif, jpg) can it be done using java?

  • Function module is used to change the bp role

    WHICH function module is used to change the bp role????