Image on cepia color

I have a Csico camera model VC240 bullet but the inage  on day mode showw in cepia color (some like green filter o  glass in front)
I try back to factory parameters and the image are in the same view.
When I did chang to night mode the image change to B&W
Can help me.

Hello,
Thank you for posting. Please call Cisco Small Business Support and open a case for this issue. You will find a contact number at the following link:
www.cisco.com/go/sbsc

Similar Messages

  • Using PHP to generate images in alternate colors

    I have a PNG image of a black silhouette graphic with
    softened edges against a transparent background.
    Can I use PHP to generate this image in alternate colors
    (allowing the black graphic to be displayed in a color other than
    black)?

    AngryCloud posted in macromedia.dreamweaver:
    > I have a PNG image of a black silhouette graphic with
    softened
    > edges against a transparent background.
    >
    > Can I use PHP to generate this image in alternate colors
    > (allowing the black graphic to be displayed in a color
    other than
    > black)?
    I have no experience with this, but I was just poking around
    in the GD
    references and found a comment on imagefill() that might
    help:
    http://us.php.net/manual/en/function.imagefill.php
    Comment:
    http://us.php.net/manual/en/function.imagefill.php#81873
    Or you may need to work with some of the other alpha
    functions.
    Mark A. Boyd
    Keep-On-Learnin' :)

  • Access image size and color profile

    Hi all,
    Is it possible to access image size and color profile ? If not, will it be possible in CS6 ?
    Thanks.

    Load the external XMP library and get it from that?

  • Check image resolution and color

    Please let me know whether it is possible to get the image resolution and color used in a eps file.
    regards,
    Sashi

    You can specify the resolution for exporting, for document etc but resolution of the raster objects can not be retrieved.
    Color space of the raster object can be retrieved using the rasterItems : colorants or imageColorSpace properties  

  • Cover flow is no longer images; just a color grid, can't correct, need help..thanks

    cover flow (artwork) is no longer images just a color grid, can't correct, need help...Thanks

    Do a factory reset .. nothing will be deleted from your backups and you will be able to get access to them again.
    The Factory Reset Gen1-4.
    Unplug your TC. Hold in reset. and power the TC back on.. without releasing reset for about 10sec. When the status light flashes rapidly; release it.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.

  • Having images cycle through colors

    Hey guys im currently creating a puyo puyo game and i was wondering for instance say when my puyos touch the bottom boundary and the next two puyo images load how would i have them be different colors? Or if every time i load my J Frame the images are random colors. I want to make the colors that puyos can be limited to red,green,blue, and yellow and cycle through the colors randomly creating different color combination's based on the specified amount of colors. Hope this makes sense here is what i have so far within my animation class i appreciate any help.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*; 
    import javax.swing.event.*;
    import java.util.Random;
    public class PuyoAnimation extends JPanel {
      public static final int numDroppingPuyos=2;
        /**ball color enumerate: Red*/
        public static final int puyoRed=1;
        /**ball color enumerate: Green*/
        public static final int puyoGreen=2;
        /**ball color enumerate: Blue*/
        public static final int puyoBlue=3;
        /**ball color enumerate: Yellow*/
        public static final int puyoYellow=4;
      final int board_height = 6;
      final int board_width = 12;
      final int rightBoundary = 30;
      final int leftBoundary = 130;
      final int image_height= 32;
      final int image_width = 32;
      final int MAX_X = board_height*image_height;
      final int MAX_Y = board_width*image_height;
      private static final int DELTA_Y = 2;
      private static final int TIMER_DELAY = 20;
      Image images[];
      Timer pptimer;
      Random rand;
      boolean keyRight,keyLeft,keyUp;
      int X;
      int X2 = 30;
      int y;
         public PuyoAnimation() {
         super();
         images = new Image[4];
         images[0] = Toolkit.getDefaultToolkit().getImage("puyo_yellow.png");
         images[1] = Toolkit.getDefaultToolkit().getImage("puyo_blue.png");
         images[2] = Toolkit.getDefaultToolkit().getImage("puyo_green.png");
         images[3] = Toolkit.getDefaultToolkit().getImage("puyo_red.png");
         setFocusable(true);
         PuyoMove puyo_move = new PuyoMove(); // Make a new video game KeyListener
         addKeyListener(puyo_move);
         setBackground(Color.BLACK);
          rand = new Random();
          pptimer = new Timer(TIMER_DELAY, new TimerAction());
          pptimer.start();
         public void setAnimation(boolean OnandOff){
            if (OnandOff) {
                pptimer.start(); 
            } else {
                pptimer.stop(); 
         private int color2ImageIndex(int color){
          return color-1;
        public void puyoBoundsRight(){
        if ((X > rightBoundary) || (X2 > rightBoundary)){
        X -= 5;
        X2 -= 5;
        public void puyoBoundsLeft(){
        if ((X < leftBoundary) || (X2 < leftBoundary)){
        X += 5;
        X2 += 5;
       private class PuyoMove implements KeyListener {
         public void keyTyped(KeyEvent k){}
          public void keyPressed(KeyEvent k){
            switch (k.getKeyCode()){
              case KeyEvent.VK_LEFT:
                   keyLeft = true;
                   break;
              case KeyEvent.VK_RIGHT:
                   keyRight = true;
                   break;
         public void  keyReleased(KeyEvent k) {
            switch (k.getKeyCode()){
            case KeyEvent.VK_LEFT:
                 keyLeft = false;
                 break;
            case KeyEvent.VK_RIGHT:
                 keyRight = false;
                 break;
            public void paintComponent(Graphics g){
             super.paintComponent(g); 
            g.drawImage(images[0],X,y,this);
            g.drawImage(images[1],X2,y,this);
            class TimerAction implements ActionListener {
            public void actionPerformed(ActionEvent e) {
             Color c = new Color(rand.nextInt(4) + 1);
               if (keyLeft){
                puyoBoundsRight();
               else if (keyRight) { 
                puyoBoundsLeft();
                y += DELTA_Y;
            if (y + image_width  >= MAX_Y){
           setAnimation(false);
                repaint();
       }

    Hey morgalr sorry to bother you again i tried what you suggested and after compiling i received an error stating that there was an IOException i fixed that but im unsure to on where to go from here it works fine now but i cant get the images to change colors, here is my code so far thanks again
       BufferedImage[] bi = new BufferedImage[4];
                try {
             bi[0] =  ImageIO.read(new File("puyo_yellow.png"));
            bi[1] =  ImageIO.read(new File("puyo_blue.png"));
             bi[2] =  ImageIO.read(new File("puyo_green.png"));
             bi[3] =  ImageIO.read(new File("puyo_red.png"));
             catch ( IOException e )
            // BufferedImage myBI = bi[myRand.nextInt(4)];
           }Edited by: Riz01 on Oct 3, 2009 10:07 AM

  • How can I use IMGPLOT to display a 12-bit image in false color?

    I want to use IMGPLOT to display a 12-bit image in false color employing VC++ 7.0 . Actually it is stilla grey level. The only difference is to customize a new palette. I guess Ni should have a API for me change the palette. I donot want to convert my image into color image since its processing speed is slow.
    Any people has the silimar experience to do this?
    Thanks a lot in advance!
    zmt

    Hi Bruce Ammons,
    Thank you very much for your answer. I still need your clear instruction.
    I can directly display 12 bit image in 256 grey level just using IMGPLOT function without any mapping operation. That is because IMGPLOT directly supports to draw a 12 bit image through IMGPLOT_MONO_12 flag.
    IMGPLOT prototype is imgPlot(GUIHNDL window, void* buffer, uInt32 leftBufOffset, uInt32 topBufOffset, uInt32 xsize, uInt32 ysize, uInt32 xpos, uInt32 ypos, uInt32 flags=IMGPLOT_MONO_12 ).
    Hence I just need a C++ function to change the palette. I believe that IMGPLOT automatically does the 12bit to 8 bit mapping for me. What I need to do is just to change the palette. The question is which NI'S API can change the palette and work well with IMGPLOT. Or I have
    to use IMGPLOTDC and change the palette in the selected DC by myself.
    Your great help is much appreicated!
    zmt

  • Making 16 bit grayscale - a image in a color scale

    Hi,
    I want to show a 16bit grayscale image in a scale of a certain color (that means that instead of scale of between black to white i scale of black to a color eg. red)
    I have some image in 16 bit grayscale format, i need to add them together each by a diffrent color scale, to make one image.
    (I am taking images in a grayscale from camera that is connected to a microsope, and each image is taken with a diffrent color filter and i need to accumulate then to make one image).
    thx in advanced!

    hmmm, no, because you need reform the data from an array of three separate images into one image which each pixel reprsents the three image's pixels in color.
    ill try to add the files so you'll see it.
    do you have another idea for doing it more easly?
    Attachments:
    adding three grayscales images to one image in diffrent colors.vi ‏75 KB

  • When printing to the dye sublimation epson stylus pro 7700 using adobe illustrator it is required that I mirror the image.  When mirroring the image the print colors are muted.  Not mirrored and the print colors are perfect.  Any suggestions?

    When printing to the dye sublimation epson stylus pro 7700 using adobe illustrator it is required that I mirror the image.  When mirroring the image the print colors are muted.  Not mirrored and the print colors are perfect.  Any suggestions?

    CS5
    On Tue, Oct 7, 2014 at 9:49 AM, ADBEDesigner <[email protected]>

  • PSE 11 - How save image with printer color profile?

    I use an outside service to make prints. How can I save an image in PSE 11 in either TIFF or JPEG format with the color profile for the outside lab's printer? Thanks.

    You can print a photo using the correct printer profile for the lab printer. In the print dialog box , go to "Page Option>Color Management" and then choose Color Handling as "Photoshop Managers color". Now click the printer profile dropdown and choose the profile for your lab printer. If you are not able to find the profile for you printer  then choose "Printer Manages Color"
    To your second question the answer is that you cannot save the image with the correct colors for printing. You can only convert the profile of your image to Adobe RGB which matches gamut of most printer profiles using "Image Menu>Convert Color Profile and choose Adobe RGB.

  • Illustrator changes 100% black image to 4 color seperation

    I have designed an image in Photoshop using 100% black. When I place the file into  Illustrator and sample my blacks, they have been changed to a 4 color separation. When I look at the pdf in Acrobat's output preview, it is a separation. It is not a display issue.  I can place that file into Indesign & it's like it was designed in Photoshop, 100% black. Can someone tell me how to get it to stay as it is suppose to be? I have tried the output black accurately in preferences among numerous other things. I have been using Indesign and Photoshop for about 3 years, but just recently began to design and edit with illustrator. I really like it but I need this problem resolved. I have many files now that I will have to go back and fix as I only noticed the problem today. Sure, it will print, but we prefer to only print our blacks on the black plate. Help!!!

    In InDesign,the ink samples as a 4 color black, but separation preview in both InDesign and acrobat show it as 100k. I know the file from Illustrator is definitely 100K now. I am a little confused as to why InDesign samples this image as 4 color, but previews it as 100K. I think I am good to go for print but would like to understand this a bit better. I am self taught at this with the basics taught to me by a friend/co-worker, Any help would be greatly appreciated.

  • Why are 8 & 16 bit images covered in colored pixelation?

    Hi...just downloaded trial vesion of photoshop CC. When I open an image it has colored pixelation on highlight colors of image if it is 8 or 16 bit.When I convert to 32 bit..the image rturns to normal. I have windows 7 64 bit operating system.Any ideas on what I can do to correct this? I am considering purchasing CS 6 extended and of course would like to test everything I can. Any help much appreciated!

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/photoshop
    In one place you say Photoshop CC and then later you say Photoshop CS6... when you ask in the Photoshop forum, you will need to clarify what you actually mean

  • Image with fill color

    Hi all,
    Is there any script which can find images with fill color applied?
    Please pass the JS code if anybody has.
    Thanks in advance.
    Tan

    Thank you all.
    It is difficult to me. Could you please provide me simple JS code.
    Thanks

  • Image Adjustments Replace Color

    In CS2 or 3 I was able to select Image > Adjustments > Replace Color (I believe that is what it was called) and it opened a window that allowed me to to select the color that I want to replace and I was able to change the color in that window. I no longer see it in CS5. Was it moved somewhere else?
    Thanks.

    It should still be there.
    Is it greyed out (32 bit image open) or the workspace your using
    doesn't show it? (should be a Show All Menu Items at the bottom of the
    adjustments menu)
    MTSTUNER

  • How to send images and other colored text in email body

    Hi
    We are using SAP CRM 4.0 and we would like to send email to our customers using actions configured for activity. Our objective is to send Marketing Emails containing <u>Images and Color texts</u> in the BODY OF THE email and not as a PDF attachment.
    The only relevant provision we could see in SCOT is either Text or PDF. On using text , we are loosing all images and color. The PDF option works , but the email generated is a blank email with PDF document as attachment.
    We want the matter to be inserted in the body of the email and not as attachment.
    Please do let us know if any one has faced similar situation and is there a resolution.
    Thanks and Advance.
    Regards
    Sachi

    Are you pasting in the HTML code?
    You can't use the formats in the CRM editor to set bold text, etc.  You have to use the HTML code and have set the Form up as Internet mail
    http://help.sap.com/saphelp_crm40sr1/helpdata/en/82/dbfd38ccd23942e10000000a114084/content.htm
    Here's the first screen setting for my test email:
    Form          Y_TRADE_SHOW_INVITATION        / Trade Show Invitation (Test)
                                                                                    Form Usage              1 Internet Mail (SMTP)                        
        Text Type               1 HTML                                        
        IBU Scenario                                                          
        Customer Scenario                                                                               
    Page Format             DINA4         Status    Created                                                                               
    Characters Per Inch     10.00                                         
        Lines Per Inch          6.00                                          
        Style                   SYSTEM SAP Smart Forms Default                                                                               
    Created By         MANECITO            Changed By         MANECITO   
         Date               01/16/2007          Date               05/22/2007 
         Time               09:49:12            Time               18:01:51   
    then, your email has to have the HTML tags
    A bare minimum is your email has to have the <HTML> tag at the top, but it's advisable to be sure you have a more complete setup like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    .style1 {
         font-size: x-large;
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-weight: bold;
    .style2 {
         font-family: Verdana, Arial, Helvetica, sans-serif;
         font-weight: bold;
    .style5 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small; }
    -->
    </style>
    </head>
    <body>
    ENTER YOUR HTML MESSAGE HERE
    </body>
    </html>

Maybe you are looking for