How to match LR/ACR4.1 to Microsoft raw viewer

I have been going through the forum and I've found threads explaining the difference that exists between the camera presets and the raw files, and that a raw file must be rendered regardless of that camera preset. I understand that. But what does the MS raw viewer use to produce an image? and is there a way to set LR to match that? I have tried, and thought I had it, but it seems to change on an image to image basis.
I initially open images in the ms viewer just to do initial deletions-oof,bad composition,etc. I may have some I like just the way they are-except maybe sharpening-but when I move to LR just to convert them the colors are off.Where/how can I get some consistant starting point for judging image quality? I mean, isn't the big purpose of shooting raw to get the best quality and be able to control how our final image looks? How can we do that if every piece of software tells us something different? and how do we know what someone else's software is doing to our image if there's no consistancy or standards to go by?
Sorry for the mini rant. Didn't intend to do that, but... Back to original question-what doe MS raw viewer use. Thanks

Well Guys-
I know this subject comes up and up but really.
There is a difference in how Lightroom renders colors. This has become obvious to me. It may show up more with specific camera makes -- I see more posts about it from Canon users (I use a 30D) but to blame the camera companies is, well, a cop-out. Why? Simple. If I open an image in Camera Raw, and in PS CS3, and save to a JPEG and open it in Windows Picture Viewer and then in the Web, and then print it through either PS or LR, I get an image that has a color shift away from LR -- LR shows colors with a warmer color balance with maybe a bit more saturation.
It's kind of like when you're in PS and save a JPEG without converting to sRGB -- you can see the difference in the rendering, and a lot of times it's just not right.
The LR engineers have acknowledged that they are using a different code set to render images. But this has been causing frustration for a lot of us.
I find myself reverting to Bridge/ACR/PS to get an accurate view of how an image will look on the web or in print, but I know that this is not the intent of the LR workflow.
I just think that the LR team needs to go over their product and at least make their output on screen and in print and in the Web fully in synch with their other products.
Tony

Similar Messages

  • I am trying to open a website that is using Microsoft content viewer, and the page does not show. Any ideas on how to view this site using firefox. It works on IE.

    I am participating in an online class whose website uses Microsoft Content Viewer to view the class content. The browser opens a new page, but nothing is there. At the top of the tab it says Microsoft Content Viewer, and nothing else. Can anyone tell me how to view my course using Firefox? I would prefer not to use IE, but it works there.

    When originally creating the pdf, you would need to choose another pdf conversion setting. In Word if you use the pdf menu, change your settings there: Adobe PDF > Change Conversion Settings. I would use High Quality Print instead. If you use the File > Print method, click the Properties button next to the Adobe PDF printer selection.
    For your already created form, you can change the file so your users will not encounter issues. In Acrobat 9, which hopefully is similar in process to 8: Advanced > Preflight > Profile tab > PDF/A compliance > Remove PDF/A information.(You'll have to unsecure your form first).
    You can read about PDF/A files in the Help.

  • How to match a fingerprint template from database ?

    i now can save a fingerprint template from database using this code..
    Dim fingerprintData As MemoryStream = New MemoryStream
    Template.Serialize(fingerprintData)
    fingerprintData.Position = 0
    Dim br As BinaryReader = New BinaryReader(fingerprintData)
    Dim bytes() As Byte = br.ReadBytes(CType(fingerprintData.Length, Int32))
    Dim cmd As SqlCommand = New SqlCommand("INSERT INTO fininger_table VALUES(@FIRSTNAME, @LASTNAME, @FINGERPRINT)", conn)
    cmd.Parameters.Add("FIRSTNAME", SqlDbType.VarChar).Value = CaptureForm.tboxFname.Text
    cmd.Parameters.Add("LASTNAME", SqlDbType.VarChar).Value = CaptureForm.tboxLname.Text
    cmd.Parameters.Add("FINGERPRINT", SqlDbType.Image).Value = bytes
    conn.Open()
    cmd.ExecuteNonQuery()
    conn.Close()
    and i fetch the data when the form is load..
    conn.Open()
    Dim cmd As New SqlCommand("SELECT * FROM Fininger_table", conn)
    Dim rdr As SqlDataReader = cmd.ExecuteReader()
    Dim MemStream As IO.MemoryStream
    Dim fpBytes As Byte()
    While rdr.Read()
    fpBytes = rdr("FINGERPRINT")
    MemStream = New IO.MemoryStream(fpBytes)
    Dim template As New DPFP.Template(MemStream)
    OnTemplate(template)
    ' template.DeSerialize(MemStream)
    End While
    rdr.Close()
    conn.Close()
    and now i'm stuck..i dont know how to match the fingerprint from the database to verify the user..
    plz help me out..tnx in advance
    btw im using a DIGITAL PERSONA FINGERPRINT READER..with the OTW SDK

    Hello My dear Brother 
                    I am zaid Ahmad khan would like to help you and this is the working code please see this and you will have the solution 
    Imports System.Data.SqlClient
    Imports DPFP
    Public Class Form1
        Private WithEvents verifyControl As DPFP.Gui.Verification.VerificationControl
        Private matcher As DPFP.Verification.Verification
        Private matchResult As DPFP.Verification.Verification.Result
        Private allReaderSerial As String = "00000000-0000-0000-0000-000000000000"
        Public template As DPFP.Template
        Private userTemplateColumn As String = "Template"
        Private userIDColumn As String = "ID"
        Dim bytes As Byte()
        Private Sub CreateDPControl(ByRef control As DPFP.Gui.Verification.VerificationControl)
            Try
                control = New DPFP.Gui.Verification.VerificationControl()
                control.AutoSizeMode = Windows.Forms.AutoSizeMode.GrowAndShrink
                control.Name = "verifyControl"
                control.Location = New System.Drawing.Point(0, 0)
                control.ReaderSerialNumber = "00000000-0000-0000-0000-000000000000"
                control.Visible = True
                control.Enabled = True
                control.BringToFront()
                Me.Controls.Add(control)
            Catch ex As Exception
                MessageBox.Show("exception")
            End Try
        End Sub
        Private Function ConnectString() As String
            Dim connectionString As String
            connectionString = "Server=localhost;database=bs;User ID=sa;Password=123"
            Return connectionString
        End Function
        Private Sub VerifyBiometric_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            matcher = New Verification.Verification()
            matchResult = New Verification.Verification.Result
            CreateDPControl(verifyControl)
        End Sub
        Private Sub verifyControl_OnComplete(ByVal Control As Object, ByVal FeatureSet As DPFP.FeatureSet, ByRef EventHandlerStatus As DPFP.Gui.EventHandlerStatus) Handles verifyControl.OnComplete
            Dim dataSet As DataSet = New DataSet()
            Dim adapter As SqlDataAdapter = New SqlDataAdapter()
            Dim sqlCommand As SqlCommand = New SqlCommand()
            Dim ctr = 0
            Try
                Dim max As Integer = 0
                Dim cn As New SqlConnection(ConnectString())
                cn.Open()
                sqlCommand.CommandText = "Select templateBytes7 from userthumbs where id='1029'"
                sqlCommand.CommandType = CommandType.Text
                sqlCommand.Connection = cn
                Dim lrd As SqlDataReader = sqlCommand.ExecuteReader()
                Dim usr
                While lrd.Read()
                    usr = lrd("templateBytes7")
                End While
                bytes = Nothing
                bytes = usr
                template = New DPFP.Template()
                template.DeSerialize(usr)
                'Perform match
                matcher.Verify(FeatureSet, template, matchResult)
                If matchResult.Verified Then
                    EventHandlerStatus = Gui.EventHandlerStatus.Success
                    MsgBox("Verified!")
                    Me.Hide()
                    MessageBox.Show("Done")
                Else
                    EventHandlerStatus = Gui.EventHandlerStatus.Failure
                    MsgBox("Please Try Again!")
                End If
            Finally
            End Try
        End Sub
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        End Sub
    End Class

  • How to match BSIM with MSEG (match FI entries to MM entries)

    Hello,
    I have to make a custom report calculating opening, closing stock - its value and quantities (with respect to begin and end date) however taking into consideration only certain movement types. I need to neglect those entries from BSIM which have other movement types than the ones specified as a parameter but there is no BWART field in BSIM.
    How can I match FI document entries(BSIM / BSEG) to MM document entries(MSEG) ?
    Thanks.

    Assuming its true ( 1MM doc = 1FI doc ), the question is how to match FI document item with MM document item ?
    is it a rule that entries in fi docs are in the same order as entries in mm doc?
    therefore a formula    (MM_entry * 2) = FI_entry would work but I'm kinda sceptical to assume that
    Edited by: Bartosz Bijak on Jan 18, 2010 1:31 PM

  • How I can use my family pack Microsoft Office Home

    How I can use my family pack Microsoft Office Home & Student 2010  PC software on my  current Mac Notebook?  Since my new operating system is "OS X" technically I wouldn't have such a issue, but it does & I couldn't run the office 2010.  By using iZip Unarciver only I was able to open the disk, but not to run 2010. 

    You have two choices if you want to use Office:
    1) purchase Mac: Office 2011
    2) install Windows on your Mac and use the Office 2010 you own

  • [Microsoft Store][Profile][Billing] How Do I Change Country/Residence for Microsoft Account? Editing Your Microsoft Account Profile for Microsoft Store. SOLVED: Change Home Location

    Hello,
    I am experiencing problems with using my Microsoft Account for billing and purchasing apps in Windows store.
    I am using my old WLID that I've created several years ago, and I have obsolete information including my country residence there. Now when I go to
    https://billing.microsoft.com, I see that I have 2 profiles:
    Personal profile: US
    Business profile: Russia.
    Now the problem is that I want my personal profile be changed to Russia as well. Having US in the profile makes it impossible to make purchases from Microsoft Store because Store does not allow for changing country when making purchases via PayPal.
    Currently I have this information:
    I need the Country/Residence information to be changed to Russia. How do I do that?
    I am stuck.
    How do I change country for my Microsoft Account?
    If it's not possible, would I be able to continue using my Microsoft Account with old residence/country information while making purchases through a new Microsoft account where I have specified my current residence?
    Or is it the same as with Windows Phone 7:
    http://support.microsoft.com/kb/2692008
    If yes, do I understand that I have to start all my 'virtual living' from scratch to use Microsoft Store? In other words, do I have to sign-in into Windows 8 with a new Microsoft Account that will have Russia specified as a Country/Region to purchase apps
    from Microsoft Store?
    If yes, can I use this new account only for purchasing apps while continuing to use my old account or all purchased apps are strictly tied to this new Microsoft Account I will use for purchasing?
    Thank you.
    Well this is the world we live in And these are the hands we're given...

    Hello,
    Thanks to
    this post @ Microsoft Answers, I was able to make Microsoft Store use correct information of my current country residence.
    //The drawback in my case was that I lost the possibility to pay with Paypal, although Paypal supports payments in Russia, and, most importantly, I lost access to US marketplace, all comments/reviews are now in Russian. What a bummer! Honestly, I'd
    like to have access to US store... Seems like the only workaround it to switch Home location for the time I purchase an app and change back when the app is purchased.
    To change the Country/region data used for Payment and Billing in Microsoft Store,
    Press WindowsKey+W to show Start screen and focus on searching in
    Settings.
    Type 'region' (without quotes) and open Region dialog box when found.
    In the Region dialog switch to Location tab and change the country of choice in the
    Home location drop-down list.
    Click OK to apply changes and make them effective.
    Open Store and press WindowsKey+I to show settings charms then choose
    Your account.
    In the Your account screen click Add payment method to configure your payment settings that will be used for purchasing apps from Windows Store.
    Notice Country/region value has changed.
    This country will be specified in Country/residence within Payment and Billing in Microsoft Store app.
    Well this is the world we live in And these are the hands we're given...

  • How to open a lost file in Microsoft Office Autorecovery

    Excel crashed and when it autorecovered my file upon restart it opened the original file with none of the data I had added.
    To find the autorecovered file I followed the instructions here: How to find a lost file in Microsoft Office Autorecovery
    But now I cannot open the file without seeing the following error code. This happens even if I change the file type listed in the previously mentioned tutorial.
    Help!! How do I open the file!?

    Well, at least have a soundtrack for my misery now.

  • HT4796 I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    Send it as a PDF.

  • How to install adobe flash player for microsoft rt surface

    how to install adobe flash player for microsoft rt surface

    Should already be enabled in IE on Win 8 RT
    http://blogs.msdn.com/b/ie/archive/2013/03/11/flash-in-windows-8.aspx

  • How do i tell what version of Microsoft Office am i using on my mac

    how do i tell what version of Microsoft Office am i using on my mac

    You can open any piece in Office, such as Word, click on About Word, and it will say Office 2011 (or whatever) for Mac.

  • How do I save a document in "Microsoft Word". The options for saving a doc. no longer say, "Save as a Microsoft Doc."

    How do I save a document in "Microsoft Word". The options for saving a doc. no longer say, "Save as a Microsoft Doc."

    You want Pages, not workstations, and you might want to bookmark Lion and MacBook Pro fora.
    http://www.apple.com/support/pages/
    http://www.apple.com/support/lion/
    http://www.apple.com/support/macbookpro/

  • How to change the page order in Microsoft word 2008

    Hi, can you tell me how to change the page order in Microsoft word 2008, thanks

    http://answers.microsoft.com/en-us/mac

  • How can I save test results to microsoft access database?

    How can I save test results to microsoft access database?

    Your best solution is to use the Database Connectivity Toolset. You can view the specifications and prices at the following web site:
    LabVIEW Database Connectivity Toolset
    http://sine.ni.com/apps/we/nioc.vp?cid=6429〈=US
    If you have additional questions about this toolset, you can email us at [email protected]
    Zvezdana S.
    National Instruments

  • How To... We Printing with Microsoft Excel in 7.0 / 2004s

    We implemented the How To... Web Printing with Microsoft Excel in BW 3.5.  We have upgraded a test box to 7.0 ( 2004s ) and the functionality is no longer working.  We have buttons in our web templates which call the help service and when they are clicked nothing happens.
    An example of the code we are using is:
    <A href="<sap_bw_url cmd='PROCESS_HELP_WINDOW' help_service='HELP_SERVICE_PRINT' item='GR1TABLE' subcmd='PRINT_EXCEL'>">
    Have other folks successfully continued to use this functionality in 2004s?  I know that formatted printing is an option in the new version but we intend to do a technical upgrade first and subsequently leverage this new functionality.
    Thanks!

    Thanks for the help.  I didn't think that there would be an SAP note for the How To but note 995142 has the exact changes required.  Thanks for pointing that out.

  • How to debug ABAP Web services from Microsoft Visual Studio

    When developing .NET based Web services clients using Visual Studio that call Web services in SAP NetWeaver .NET developers would like to be able to debug inside SAP. In my blog <a href="/people/andre.fischer/blog/2007/02/07/how-to-debug-abap-web-services-from-microsoft-visual-studio to debug ABAP Web services from Microsoft Visual Studio</a> I would like to point .NET developers to the fact that SAP NetWeaver offers the option of external debugging to perform this task. Though the steps that have to be performed are described in the SAP Online Help I am sure that this option is not well known amongst the .NET developer community.

    Hello WilliamIV,
    >>How can I "configure" Visual Studio debugger to allow validation to work?
    Since I do not have a VS2012 environment, according to your provided link, I created a test demo with VS2013, however, both ways catch the validation error:
    If possible, you could have a try with VS2013 to see if it works or run the example on other machine with VS2012 to see if this is caused by the VS environment, in my side, I do not change any configuration, all are default.
    If I misunderstood this issue, please feel free to let me know.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • How to find out null sorting method used?

    (Reposting the question, originally posted on java.sun.com forum) I am trying to find out how the nulls are sorted in the current resultset. I would like to find out without really assuming about the database used. So, I thought the following methods

  • I cannot print to my Canon iR C2880i after Mavericks update

    I am no longer able to print to the office Canon iR C2880i after I updated to Mavericks.  I am able to ping the printer using Network Utility.  It says my driver version is 1.0. I know it needs to be something else, but I cannot figure it out.  Pleas

  • Pdf import impossible in iWork 2.0

    I received iWork some days ago, and tried a few experiments-As word docs could open easily in iWork, I have been unable to import pdf files. I have Acrobat Pro 7.05 Professional, with which all these documents open, and which some have been made with

  • Unable to delete Portal Group

    Hi Portal Knowledgeable ones. I get an exception when I attempt to delete a portal group.  <b>My first question is where do I look to find more information about the exception that was returned (eg; a log file)?  I can't click on it to see more detai

  • Connection Pooling Problem in the HttpServlet, Need Help..... ASAP

    hi all, sample httpsevlet program is deployed and successfully executed. but when i am using connection pooling that servlet is deployed but it is not displayed any output on the browser who knows this connection pooling plz send the sample code for