Red saturation problems and post-processing

I see problems with the color red saturating out quickly. This often causes detail to be lost. I have pictures of a red bird where the jpeg produced by the camera is usually better, showing more detail, than anything I can produce from the raw file. I have tried limiting saturation using the hue/saturation tool (PSE12) but that gives unacceptable results as the color gets lost when you reduce saturation.
My best workaround so far is to start with the jpeg file, open it as a raw file, and do post-processing that way. That has given pictures with more detail than starting with the original raw file. Is there anything else I can try? I find it hard to believe the camera processor does better than PSE12 in these cases.

I think I'm missing something.  Now I see the code and DC's inside the DTR.  However, when I try to import into NWDS no DC's come in (the software components exist, but no DC's in them).  Additionally, the CBS web ui reports that my software components do not contain any DC's even though I see them in the DTR.  What things can I look at to determine what I'm missing here?
Thought I'd add some more info..after applying the support packs, we imported the new SAPBUILD, SAP_JTECH, and SAP_jee SCA'S into our track as we required some functionality from the newer build SCA.  We also reimported our old archives back into the system by manually checking them in assuming this would fix the problem with us not seeing the source in the NWDS or the DTR.  After the import, the CBS no longer sees our custom DC's, but the DTR does (both in active and inactive ws).  When importing the dev configuration into the NWDS our custom DC's no longer appear, but SAP's standard SCA's do.
Message was edited by:
        Eric Vota

Similar Messages

  • Best way to stream lots of data to file and post process it

    Hello,
    I am trying to do something that seems like it should be quite simple but am having some difficulty figuring out how to do it.  I am running a test that has over 100 channels of mixed sensor data.  The test will run for several days or longer at a time and I need to log/stream data at about 4Hz while the test is running.  The data I need to log is a mixture of different data types that include a time stamp, several integer values (both 32 and 64 bit), and a lot of floating point values.  I would like to write the data to file in a very compressed format because the test is scheduled to run for over a year (stopping every few days) and the data files can get quite large.  I currently have a solution that simply bundles all the date into a cluster then writes/streams the cluster to a binary file as the test runs.  This approach works fine but involves some post processing to convert the data into a format, typically a text file, that can be worked with in programs like Excel or DIAdem.   After the files are converted into a text file they are, no surprise, a lot larger than (about 3 times) the original binary file size.
    I am considering several options to improve my current process.  The first option is writing the data directly to a tdms file which would allow me to quicly import the data into DIAdem (or Excel with a plugin) for processing/visualization.   The challenge I am having (note, this is my first experience working with tdms files and I have a lot to learn) is that I can not find a simple way to write/stream all the different data types into one tdms file and keep each scan of data (containing different data types) tied to one time stamp.  Each time I write data to file, I would like the write to contain a time stamp in column 1, integer values in columns 2 through 5, and floating point values in the remaining columns (about 90 of them).  Yes, I know there are no columns in binary files but this is how I would like the data to appear when I import it into DIAdem or Excel.  
    The other option I am considering is just writing a custom data plugin for DIAdem that would allow me to import the binary files that I am currently creating directly into DIAdem.  If someone could provide me with some suggestions as to what option would be the best I would appreciate it.  Or, if there is a better option that I have not mentioned feel free to recommend it.  Thanks in advance for your help.

    Hello,
    Here is a simple example, of course here I only create one value per iteration in the while loop for simplicity. You can also set properties of the file which can be useful, and set up different channels.
    Beside, you can use multiple groups to have more flexibility in data storage. You can think of channels like columns, and groups as sheets in Excel, so you see this way your data when you import the tdms file into Excel.
    I hope it helps, of course there are much more advanced features with TDMS files, read the help docs!

  • Post-Processing limit on number of files?

    Hello,
    When I export a set of pictures, I apply a post-processing Photoshop droplet to that applies the Imagenomic Portraiture filter. It works fine up to a certain point. I noticed that if the number of files is less than 21, it works fine. If the number is greater, it fails to perform the post-processing and won't even launch Photoshop to apply the droplet action.
    Has anyone encountered a file limit problem with post-processing in export?
    Del

    I'll assume you are talking about Windows and not Mac since I cannot speak about Mac's. In Windows, the export action is invoked by passing the filenames on a command line to the program/script that you specify. There are limits to how many characters can be passed on a command line, depending on which method the programmers used. I expect the limit is 2048 characters. When that limit is reached, then the action does nothing.
    The only way to increase the number of photos you can process, is to change the export folder name to something very short, like C:\Temp, or even shorter. By default, it exports to a very long path name an putting that in front of each photo name eats up valuable characters.
    There will still be a limit, but at least you can process more before failure.
    Steve

  • Nokia's image post processing is terrible

    I know there are other posts about this but the camera is totally useless when pictures are just yellow tinted and blurry. Lumia 920. See attached pictures for difference between pre and post processed picture.
    Attachments:
    wp_ss_20130913_0011.png ‏1671 KB
    wp_ss_20130913_0012.png ‏1565 KB

    Here, Ive added another sample at ISO100 to show again. Notice the white balance and sharpness of the before picture is perfect! and after the processing happens...your left you aggresive noise reduction and a yellowish photo.
    save both of those pics to your computer and compare.
    There is nothing wrong with the camera on my phone, I wish people would stop with those kinds of responses. It was fine before Amber update!
    Attachments:
    before.png ‏1466 KB
    after.png ‏1373 KB

  • Problem with "SELECT...FOR UPDATE OF..." and "POST command" combination

    Problem with "SELECT...FOR UPDATE OF..." and "POST command" combination
    Problem in committing transactions in Multiple Forms (Oracle Forms) with POST built-in command:
    Consider that the following statements are written in WHEN-WINDOW-CLOSED trigger of a called form.
    Statements in called form (Form name: FORM_CHILD):
    go_block('display_block') ;
    do_key('execute_query') ;
    -- Data from table_b will be populated in this block, based on the value of COLUMN_1 obtained
    -- from TABLE_A.
    -- Example: If the value of COLUMN_1 is 10, then all the matching records from TABLE_B, which
    -- are inserted with value 10 in TABLE_B.COLUMN_1 will be fetched and shown here.
    if user_choice = 'YES' then
    commit ;
    else
    rollback ;
    end if ;
    Statements in calling forms:
    There are two calling forms having following statements and it is going to call the above said called form.
    CALLING FORM 1
    Statements in KEY-COMMIT trigger:
    post;
    call_form(form_child, no_activate) ;
    Statements in ON-INSERT trigger:
    select column_1
    from table_a
    for update of column_1
    where column_2 = 'X' ;
    update table_a
    set column_1 = column_1 + 1
    where column_2 = 'X' ;
    insert into table_b ...;
    insert into table_b ...; Statements in KEY-COMMIT trigger:
    post;
    call_form(form_child, no_activate) ;
    CALLING FORM 2:
    Statements in ON-INSERT trigger:
    select column_1
    from table_a
    for update of column_1
    where column_2 = 'X' ;
    update table_a
    set column_1 = column_1 + 1
    where column_2 = 'X' ;
    insert into table_b ...;
    insert into table_b ...;
    insert into table_b ...;
    Our understanding:
    Assume that both the forms are running from two different machines/instances, issuing commit at the same time. In this case, forms will start executing the statements written in ON-INSERT trigger, the moment POST command is executed. Though the commit is issued at the same time, according to oracle, only one of the request will be taken for processing first. Assume that calling form 1 is getting processed first.
    So, it fetches the value available in COLUMN_1 of TABLE_A and locks the row from further select, update, etc. as SELECT...FOR UPDATE command is used (note that NOWAIT is not given, hence the lock will be released only when COMMIT or ROLLBACK happens) and proceed executing further INSERT statements. Because of the lock provided by the SELECT...FOR UPDATE command, the statements in calling form 2 will wait for the resource.
    After executing the INSERT statements, the FORM_CHILD is called. The rows inserted in to TABLE_A will be queried and shown. The database changes will be committed when user closes the window (as COMMIT is issued in its WHEN-WINDOW-CLOSED trigger). Then the SELECT...FOR UPDATE lock will be released and calling form 2's statements will be executed.
    Actual happenings or Mis-behavior:
    Calling form 2 starts executing INSERT statements instead of waiting for SELECT...FOR UPDATE lock. Also, the value selected from TABLE_A.COLUMN_1 is same in both the calling forms, which is wrong.
    The rows inserted into TABLE_B are having similar COLUMN_1 values in calling form 2 and they are fetched and shown in the called form FORM_CHILD.
    Note that in calling form 2 also POST only is issued, but the changes posted there are accessible in calling form 1 also, which is wrong.
    Kindly suggest us as to how to fix above problem. It will be much use, if you can send us the information regarding the behavior of Oracle Forms POST built-in also.
    Our mail ID: [email protected]
    Thanks a lot in advance.

    You have several problems:
    1. On-Insert will ONLY run if you have created a new record in a base-table block. If you haven't done that, then the POST command will not cause it to run.
    2. Select for update without a "no wait" will lock records for the first form, but when the second form tries this, it will hit the ORA-00054 exception, and will NOT wait. The only way you could make it wait is to issue an UPDATE sql command, which is not such a good way to go.
    All POST does is issues SQL insert or update commands for any changes the user has made to records in a form's base-table blocks, without following with a Commit command.
    Also understand that Commit is the same as Commit_Form, and Rollback is the same as Clear_Form. You should read up on these in the Forms help topics.

  • Lenovo ideapad yoga 13 pci data acqusition and signal processing center for problem for windows 8

    Link to picture
    hi everyone, 
    find original w8 cd and then i installed, when i was installing
    i deleted all recovery and other partition, i did not think what can i do,
    but then i activated windows and installed all driver, but i taking 
    after all drivers it stayed
    2''unknown devices''
    and when i rebooted, it says, usb device not recognized'' and also
    ''pci data acquisition and signal processing center'' devices problem for windows 8. and touchscreen not working.
    i read related for w7 same problem, but what i will do now ?
      thanks.
    Moderator note; picture(s) totalling >50K converted to link(s) Forum Rules

    hi adilsefaersan,
    Welcome to Lenovo Community Forums!
    By opening your Device Manager right click on one unknown device and choose properties,
        >On the properties windows Click on the Details Tab, on the property drop down Choose hadware IDs
         > then copy the value and post back here whats on the Value pane
    Do it for all those unknown Device and Post here the Value of the hardware ids
    also can you share your Windows Version and bit type so we'll knwo the correct download page for you
    Thanks and Regards
    Solid Cruver
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Post processing problem

    Hi all,
    I am facing an issue where i have done booking through MFBF and some parts got stored for post processing, now the problem is that when i am doing document specific reversal, parts which got stored for postprocessing is not getting reversed while other parts got cleared. Kindly help
    Prashant.Pillai
    SAP PP Consultant

    Hi,
    There are 2 ways to solve the problem.
    1. Clear the backflush error using MF47 and reverse both the docs.
    2. Do the material document reversal and delete the post processing error in MF47 because the error there is MF47 is actually not posted and is under reserve for that Header material. This option is only good for testing but not in actual production scenario.
    Regards,
    Gaurav Mehra

  • Performance problems encountered in CIF Post processing

    Hello
    We have an SCM 7.0 / ERP 6.06 system and had  activated CIF Post processing.
    However, due to very slow system performance, we had to deactivate CPP.
    Subsequently, we have now decided to re-activate it.
    I found one note 802980 for performance improvement.
    We are also considering scheduling //cppr regularly to delete obsolete and processed CIFERRLOG records.
    Apart from this are there any other best practices/checks that we can use before we go ahead with the re-activation?
    Regards
    Anupama

    Hi Anupama,
    Take a look of this note:
    1095049 - CPP -> Performance during the data transfer from R/3 to
    APO
    Basically the best thing you can do is to Reorganize CIF PostProcessing in APO and R/3. Run /SAPAPO/CIF_POSTPROC_REORG and delete the obsolete and also the old records. Do this regularly.
    Also try to send the error logs to the users and make a process to reduce the number of errors by correcting the cause of the problems.
    Kind Regards,
    Mariano

  • 10.4.9 and problems with rstarting and pcscd process

    Since installing 10.4.9 I have noticed two problems on my PowerBook:
    1) When I try and restart the machine all goes well until I get to the rotating clock icon (not sure what it is actually called) which looks like it is running a sytem check except the process never ends and I have to force a restart.
    2) A process called pcscd takes over the system and uses over 80% of the processor causing the fan to blow. It never quits and I have to restart.
    Are these bugs introduced with 10.4.9?
    Tony

    OK, I have tracked down the cause of this problem and it is related to a known bug. I recently purchased a Blackberry Pearl and there is a known issue with pcscd having problems when connected, possibly because it does not recognise the device. Here are some relevant links:
    http://www.blackberryforums.com/mac-users-corner/49235-pocketmac-4-0-released-2. html
    http://www.pocketmacsupport.net/?section=knowledge&action=view&article_id=36
    http://www.macworld.com/forums/ubbthreads/printthread.php?Board=newsthread&main= 469489&type=post
    Very disappointing that Apple have not resolved this issue given that it has been known for some time.
    Tony

  • IPCC system give error message i.e I'm sorry we are currenty experiencing system problems and are unable to process your call.

    Dear support,
    as we are uing ipcc system  Cisco Application Administration - 7.0(1)_Build168 Package: Cisco Unified CCX Enhanced
    when user dial service desk number after working hours must be transfer to mobile but its  not working
    user hearing the  pop up welcome message after then user hearing the ringing then user hear the  
    error message i.e I'm sorry we are currenty experiencing system problems and are unable to process your call.
    so please advice ....
    regards
    syed

    Before you perform a reactive debug, I suggest you practice on a non production script.
    The first thing you will need to do is, open the CRS Script Editor and log in.  You cannot Reactive Debug if you're not logged in and connected to the UCCX server.
    Next, press CRTL+Shift+R to open the reactive debug dialog.
    Select the script name from the list for the script you are troublehsooting.
    Select how long you want the system to wait for the next call before cancelling the debugger.
    Press OK
    Place a call into the script.
    At this point a script window should open and the Start step should be highlighted in red.
    Press F10 to step through the script, step by step, analyzing what's happening.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • Authorware IE7 and SSL processing problem

    I have been using AW for about 14 years. Over the
    last couple years, I have integrated my programs into a Learning
    Management System. I noticed immediately that IE 7 caused my
    Authorware courses to choke at the point I did an LMS Initialize
    routine. Our LMS has SSL encryption. Some of the posts I've read on
    the internet link the IE 7 problems to SSL processing. If I were to
    have SSL processing removed from our LMS, would I still run into
    errors with AW and IE 7? Any thoughts or comments are appreciated!
    For any Adobe folks reading this - I have developed hundreds
    of projects using AW - it is by far THE best tool for e-Learning,
    application simulation, and assessments! It is in the best interest
    of thousands of folks to upgrade it and keep it around!

    More likely, or at least the first thing to check, is the
    'iFrame'
    workaround. Something in IE7 prevents the
    ReadURL("javascript...")
    function from working correctly. The workaround is to embed
    the A'ware
    file's HTML file into an iFrame in another HTML file that the
    LMS calls.
    Search the forum for quite a few posts detailing this.
    If that doesn't work, then it could be an https issue; I've
    had variable
    luck with such URLs....but they do seem to work overall.
    If https worked in previous versions of IE and your courses,
    that's
    likely not the issue with IE7 (but who knows for sure!).
    Erik
    cjgrange wrote:
    >
    I have been using AW for about 14 years. Over the
    last couple
    > years, I have integrated my programs into a Learning
    Management System. I
    > noticed immediately that IE 7 caused my Authorware
    courses to choke at the
    > point I did an LMS Initialize routine. Our LMS has SSL
    encryption. Some of the
    > posts I've read on the internet link the IE 7 problems
    to SSL processing. If I
    > were to have SSL processing removed from our LMS, would
    I still run into errors
    > with AW and IE 7? Any thoughts or comments are
    appreciated!
    >
    > For any Adobe folks reading this - I have developed
    hundreds of projects using
    > AW - it is by far THE best tool for e-Learning,
    application simulation, and
    > assessments! It is in the best interest of thousands of
    folks to upgrade it and
    > keep it around!
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • Apache Process Runner has encountered a problem and needs to close.

    I found a problem in tomcat server
    Apache Process Runner has encountered a problem and needs to close. We are sorry for the inconvenience.
    how can i remove this problem?

    Jim,
    Thanks for all your help.  Sure enough, an MOV file works just fine and I may have tracked down the problem: the video, I'm sure caused from the source tape, lags towards the end-it seemed like every time I scrolled towards the end of the AVI it would crash.  Still seems mighty peculiar that it would crash the system each time.
    Thanks,
    Tim S.

  • How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something"sign... it just doesn't start the system....

    How do I fix a initializing problem with my macbook pro? I only get to the blank screen with the apple logo and the "processing something" sign... it just doesn't start the system....
    Please help
    Marcelo

    If there is no loading bar, it's usually a problem with a third party kext file in OS X itself.
    You can press the power button down to force a hardware shutdown, then reboot holding the shift key down on a wired or built in keyboard, this will disable them and you go around and update your third party software.
    Gray, Blue or White screen at boot, w/spinner/progress bar
    Also take this time to backup your users files off the machine if possible.
    Most commonly used backup methods
    Sometime that won't work and you need to do more
    ..Step by Step to fix your Mac

  • I just updated my iPhone 4 to iOS6.  In the process, I ran into a problem and had to restore factory settings.  After syncing the phone, I see that 218 apps need to be updated. When selecting "update all," it says "manage local device storage usage." How?

    I just updated my iPhone 4 to iOS6.  In the process, I ran into a problem and had to restore factory settings.  After syncing the phone, I see that 218 apps need to be updated. When selecting "update all," it says "Cannot Download.  There is not enough available local storage to download these items.  You can manage your local device storage usage in Settings."
    How can this be the case when I haven't changed any apps from before updrading to iOS6, and I don't have any music yet on the phone?  Why is it telling me there is not enough local space?

    Hi RileyAvaCadenRiver,
    If you recently updated your iPhone to iOS7, you will need to update iTunes on your computer to iTunes 11.1 or newer for it to correctly recognize the iPhone. You may find the following link helpful:
    Apple: iTunes 11.1.1
    http://support.apple.com/kb/DL1614
    Regards,
    - Brenden

  • HT1567 I can't import an audio cd to itunes to add to my library. I ran a diagnostics test and it had a red light next to: Unable to access audio cd. I am wondering if anyone else has had this problem and if there is an easy solution?

    I can't import an audio cd to itunes to add to my library. I ran a diagnostics test and it had a red light next to: Unable to access audio cd. I am wondering if anyone else has had this problem and if there is an easy solution?

    Satellite L675-S7113 Specifications (PSK3AU-07C02S)
    Satellite L675-S7113 Support Page
    rwls wrote:...since I got it 3 years ago I've been unable to burn an audio CD from ITunes or Windows media although it worked once after the computer had been shut off for awhile..and didn't find the problem until after my warranty had expired...
    From your statements above, it sounds like you never tried to burn a CD for at least the first year that you owned the laptop, as it had a one year warranty on it. While you might have used it frequently to install software,  play DVDs, Blu-Ray disks, etc, that's unclear from your statements. Nonetheless, it might just be dirty-dusty. So, before deleting-uninstalling any software, and given they're cheap, try a CD-DVD Cleaner Disk first and see if that resolves your problems.
    Let us know what happens. Good luck.
    Mike

Maybe you are looking for