OJ 6500A Plus and Augmented Reality

Do you have an Officejet 6500A Plus?
If so, check out the Augmented Reality support app for replacing cartridges.
http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&docname=c03668358
Although I am an HP employee, I am speaking for myself and not for HP.
Twitter: @Ciara_B_HP

Star Wars fans might like this
https://www.youtube.com/watch?v=fvA6fmfbCps&featur​e=youtu.be
Although I am an HP employee, I am speaking for myself and not for HP.
Twitter: @Ciara_B_HP

Similar Messages

  • Queries regarding Flash Builder and Augmented Reality.

    I am Sarat from India. I'm a software engineer with working knowledge of Java, so Flash AS and OOP are understandable for me. I am working on an augmented reality project. I am quite new to Flash, Adobe Community and I've got some queries regarding Augmented Reality and Flash Builder:
    1. Flash Builder 4.6 comes with a default Flex 4.6 SDK. However, Flex 4.6 SDK wasn't allowing me to compile and run some example files. So I've downloaded Flex 4.0A version from Adobe.com. Now the examples are running fine, but would there be any problem if i try deploying such projects in a website or as a desktop app? Once the code is compiled into a swf file, the flex framework used doesn't make much difference, does it?
    2. Would the AR project run effectively on a website, given various internet/processor speeds worldwide? Would the effectiveness of the AR project, deployed on a website, depend on the number of triangles in the 3D models i.e. dae files? Because as per my understanding heavy models implies more time to download the flash app into the local browser from the internet and more time to render them by the papervision 3D engine right?
    3. Can we develop a stand alone desktop AR app using Flash Builder? Using Adobe AIR we can, i guess. Please refer some tutorial, if possible.
    4. I've seen that we can implement multiple-marker-tracking AR using vectors/arrays in AS. Would there be any performance issues depending on the size of the vectors/arrays used.
    5. Can someone please mention some tips to improve performance of an AR app (desktop app and web app)?
    6. What would be, approximately, the cost of FLARManager, FLARToolkit commercial versions, if you have any idea? I've gone through their website but they did not mention the costs.
    7. Would applying bitmap material to the dae models pull down the web app/mobile app/desktop app performance, given some 4 to 5 dae models in the scene?
    8. Is it advisable to use multiple markers with multiple dae models or single marker with Flash-based GUI option to load different models onto the same marker?
    It would be very helpful for me if someone could answer my above queries.
    Sarat.

    #1, If it compiles then you have no issue. There's no reason at this point not to use 4.6. You should bundle a captive runtime to assure the users computer won't need to have AIR installed at all.
    #2, Papervision is old. Use the Stage3D and/or a wrapper framework. As far as the generic "If I download lots of data will it take the user more time to load it", well, of course. Just don't make the loading experience painful. Entertain them while they way or find ways of displaying data sooner than later. If it's desirable on the web has more to do with the context of the app and the device displaying it. In other words, a phone user would find it easy but obviously not a desktop user.
    #3, Definitely referring you to Google on that one.
    #4, Size always matters, it's common sense. The more you process the harder it is. While I haven't done AR I've used the Microsoft Kinect SDK and ANE and tracking was extremely fast but limited. From what I've seen and your basic built in location and direction hardware on any mobile device you shouldn't have much trouble. Depends on what you're doing.
    #5, This discussion would be way too large for a forum. You'd need to consult a firm experienced in AR development.
    #6, "Applications using the commercial license do not have to provide source code, but must pay a licensing fee. Contact ARToolworks at [email protected] for more information." They will base your price on your product, there is no single price.
    #7, The models could be huge and elaborate or tiny and simple which changes the answer. Consult the answer in #4. Ultimately most people are getting on fast networks with mobile and excessively fast on desktop/wifi. Size matters a lot less than 3 years ago.
    #8, Depends on what you're doing. You have to explain it.

  • Flex and Augmented Reality, Preview not working

    Hi
    I have been following the tutorial  Introduction to Augmented Reality on gotoandlearn(http://www.gotoandlearn.com/play.php?id=105).
    I have followed the coding exactly  and yet nothing happens when I go to preview it.  I have even copied the  code in the provided code (ar.zip) into my project and have had no result.  When I go  to run the application inside Flex, the Flash Player opens with the  default Flex coluring but nothing occurs inside, Eg the camera is not  called up etc.
    I am using FlexBuilder 3 with Flex 3.5.  With  Flash Player 9.
    Here is the code (basically pulled straight  from the downloadables)
    package {
       import flash.display.BitmapData;
       import  flash.display.Sprite;
       import flash.events.Event;
       import  flash.media.Camera;
       import flash.media.Video;
       import  flash.utils.ByteArray;
       import  org.libspark.flartoolkit.core.FLARCode;
       import  org.libspark.flartoolkit.core.param.FLARParam;
       import  org.libspark.flartoolkit.core.transmat.FLARTransMatResult;
       import  org.libspark.flartoolkit.detector.FLARSingleMarkerDetector;
       import  org.libspark.flartoolkit.pv3d.FLARBaseNode;
       import  org.libspark.flartoolkit.pv3d.FLARCamera3D;
       import  org.papervision3d.lights.PointLight3D;
       import  org.papervision3d.materials.utils.MaterialsList;
       import  org.papervision3d.objects.primitives.Cube;
       import  org.papervision3d.render.BasicRenderEngine;
       import  org.papervision3d.scenes.Scene3D;
       import  org.papervision3d.view.Viewport3D;
       [SWF(width="640".  height="480". frameRate="30". backgroundColor="#FFFFFF")]
        public class ARTester extends Sprite
           [Embed(source="map.pat". mimeType="application/octet-stream")]
           private var pattern:Class;
           [Embed(source="camera_para.dat". mimeType="application/octet-stream")]
           private var params:Class;
          private var  fparams:FLARParam;
          private var mpattern:FLARCode;
           private var vid:Video;
          private var cam:Camera;
           private var bmd:BitmapData;
          private var raster:  FLARRgbRaster_BitmapData;
          private var  detector:FLARSingleMarkerDetector;
          private var scene:Scene3D;
           private var camera:FLARCamera3D;
          private var  container:FLARBaseNode;
          private var vp:Viewport3D;
           private var bre:BasicRenderEngine;
          private var  trans:FLARTransMatResult;
          public function  ARTester()
             setupFLAR();
              setupCamera();
             setupBitmap();
             setupPV3D();
              addEventListener(Event,ENTER_NAME, loop);
              private function setupFLAR():void
                 fparams = new FLARParam();
                fparams.loadARParam(new  params() as ByteArray);
                mpattern = new FLARCode(16, 16);
                 mpattern.loadARPatt(new pattern());
       private  function setupCamera():void
          vid = new Video(640, 480);
           cam = Camera.getCamera();
          cam.setMode(640, 480, 30);
           vid.attachCamera(cam);
          addChild(vid);
            private function setupBitmap():void
              bmd =  new BitmapData(640, 480);
              bmd.draw(vid);
               raster = new FLARRgbRaster_BitmapData(bmd);
              detector = new  FLARSingleMarkerDetector(fparams, mpattern, 80);
            private function setupPV3D():void
              scene = new  Scene3D();
              camera = new FLARCamera3D(fparams);
               container = new FLARBaseNode();
              scene.addChild(container);
              var pl:PointLight3D = new PointLight3D();
               pl.x = 1000;
              pl.y = 1000;
              pl.z = -1000;
              var ml:MaterialsList = new MaterialList({all:  FlatShadeMaterial(pl)});
              var cube1:Cube = new  Cube(ml, 30, 30, 30);
              var cube2:Cube = new Cube(ml, 30,  30, 30);
              cube2.z = 50
              var cube3:Cube = new  Cube(ml, 30, 30, 30);
              cube3.z = 100;
               container.addChild(cube1);
              container.addChild(cube2);
               container.addChild(cube3);
              bre = new  BasicRenderEngine();
              trans = new FLARTransMatResult();
              vp = new Viewport3D();
               addChild(vp);  
           private function  loop(e:Event):void
                  bmd.draw(vid);
                 try
                     if(detector.detectMarkerLite(raster. 80) &&  detector.getConfidence() > 0.5)
                     detector.getTransformMatrix(trans);
                     container.setTransformMatrix(trans);
                     bre.renderScene(scene, camera, vp);
            catch(e:Error){}
    Any help would be much appreiciated.
    Thanks
    Daniel.
    Also; sorry I wasn't sure how to neatly display my code in the post

    You didn't post the original, before adding the +5 exposure.
    I played around in LR5 with some of my photos, and I found this one that exhibits similar results on adding +5 exposure, but it starts off as underexposed and low contrast.  Anything a bit more exposed or with a slightly brighter area (e.g. make dog's front leg a tiny bit brighter) does clip.  (Note - this is the original photo without adding any exposure).

  • SWFLoader and Augmented Reality

    Hi. I created a mobile Actionscript project and have IN2AR augmented reality working with it. I complied a .swf file, and I used the SWFLoader to bring it into a Flex mobile project in FlashBuilder. However, when I do this, the captured video from the camera does not display on screen like it did in the original project. My trace statements show that the test image is being detected for augmented reality, but nothing is displaying on screen in the Flex app other than the IN2AR logo and bottom bar that shows something has been detected. Any ideas for solutions?
    This is my code for the Flex app:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     minWidth="1024" minHeight="600">
              <mx:SWFLoader id="loader1" source="../ar/AReality.swf"/>
    </s:Application>

    Star Wars fans might like this
    https://www.youtube.com/watch?v=fvA6fmfbCps&featur​e=youtu.be
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • HP Officejet 6500A Plus-Scan won't work

    I have a 6500A Plus and I can't get my scan to work. It prints from the computer and I can fax, but when I go to scan it doesn't recconize the computer. I went to the front page and clicked register to scan and it said that it already was and there was no need to do it again. I uninstalled the printer and reinstalled it but still it won't work. When I go to the printer and see what I have for registered user my computer is listed, when I go to scan it shows my computer but then it says it "lost" the computer. I don't get it, if I can print but not scan...

    Hello Ruthielou, and welcome to the HP Forums.
    I see you are experiencing scan issues.  I would like to try and assist.
    I would recommend performing a power reset.  Disconnect the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug the printer back in. Ensure you plug the printer directly to a wall outlet. Make sure to bypass any sort of surge protector or power bar.
    I would then recommend following this document on A 'No Computer Detected' or 'Connection Error' Message Displays during Scanning.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums.
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • I want to copy 2-sided to 2-sided on my 6500A Plus E710n on Windows 7 64-bit

    I have a duplex unit on my 6500A Plus and can PRINT 2-sided with no problems.  I also have the ADF installed.  My question is how do I COPY 2-sided to 2-sided.  When I touch copy on the printer and go into setup, I don't have the option for 2 to 2, I only have 1 to 2, which doesn't seem to work either.  Is there an additional setup that I need to do, or am I back to copying manually like I was on my old printer.  Any advice would be appreciated.

    jumh880,
    You may find the post here helpful as an accepted solution has been found for your issue.
    Hope you find this helpful.
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • Can't scan with HP Officejet 6500A Plus to Mac 10.9.3?

    We have HP Office jet 6500a Plus and it says no computer connected.  How do I scan to my Mac 10.9.3?
    Thanks.

    Hi,
    Be sure to run Software Update first, then scan using Image Capture, Preview or Printers & Scanners:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03967506&tmp_task=useCategory&cc=us&dlc=en&lc=e...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • HP 6500A Plus "not connected" to eprint center

    I have just purchased an HP 6500A Plus and after setting up the printer All-in-one on the network and printing test pages from two computers on my network. I pushed the app button and was able to access various applications. I also logged into the eprint center in my browser and was able to see that the printer was connected to the eprint center. I then proceed to print some items for the app menu on the printer, they printed correctly. The next day I went to access the app menu on the printer touch screen and the printer gave me an error message that it could not connect to the server. It ran through every fix I could find online, but you have 44 pages of people complaining about this same issue without any solution. So I though maybe you would personally send me a solution if I reached out on a post. I know the printer is setup correctly on the wireless network and continue to be able to print wirelessly from all my computers. However the app center never connects ( I have turned off and on the printer, I have unplugged the printer, I have cycled the router multiple times, I have changed the IP address, I have removed it from the network and reset up the wireless connection)
    So what is the fix, this seemingly is effecting every eprint center user.

    Hi,
    From the printer setup menu select, "Printer Status Report". In the printed report look for entries "Printer name",  "Printer model name" and "serial number". Do you see any information printed??? OR is it blank????
    Also from the main screen, press the "Return key" four times. We cannot see this key as it is not glowing/not highlighted, however, observing closely you can see it. This opens Support menu.
    Go into  "Information Menu" and check the details displayed for "Printer name", Printer Model name and serial number. Are they blank???
    Also contact your ISP and in the router webpage, set "Port Forwarding" for the ports 80, 443, 5222,5223
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • How do I get my HP Officejet 6500A plus off idle?

    I sent documents to be sent to my HP Officejet 6500A Plus and the printer list indicates the printer is connected (wireless) and the list of documents to print shows it is printing but the heading after connected to printer reads "idle".
    This is the first printing problem I have had with the printer after a few months of use and frequent printing. I use a mac with snow lepard 10.6.8

    Hi,
    The scan settings need to be changed at HP Scan app. Launch the HP scan application from your computer and  select the option on left side (PDF or JPEG....) then choose the scanning size as legal on the right.
    Save it and close the app.
    Now you can scan in legal.
    Note:
    Also you can create your own scan settings from HP Scan settings.
    Happy Printing
    Praba
    Click on the "Thumbs up"button on the left to say "Thanks"
    Please mark the post that solves your problem as "Accepted Solution"
    (Although I am employed by HP, I am speaking for myself and not for HP)

  • My Officejet 6500A Plus will not print complete page in wireless mode

    When printing any documents, big or small, my 6500A Plus prints a couple sentences per page... and takes about 2 minutes between.  So to print a word document with 3 paragraphs... paragraph 1 comes out on a page after 2 mins... then 2 minutes later the second paragraph comes out on a seperate page... and so on.  The wireless router (d-link N speed) is in the same small room (is 8 feet away) with nothing in between to cause interference.  Can watch you tube videos in high definition on the other side of the house via wireless so I know it is not the network speed/bottleneck.  If I connect a network cable... it prints perfectly.
    The document to print is a simple work document with no graphics or compicated items.  It's almost like the printer can only process a few sentences at a time... then goes back to get the next coupld and prints them
    Running windows 7 on my HP notebook.

    Hey Steve564,
    It sounds like the communciation between your 6500a Plus and your network has developed an issue.  I would advise performing the steps listed below.
    From the home screen of the printer press the Right Arrow
    Select the Setup menu
    Select Network submenu
    Scroll to the bottom of the list and select Restore Network Defaults
    After the network defaults have been restored, then I would perform a network power cycle following the below steps.
    Follow these steps to reset your HP printer, your wireless router, and your computer.
    Press the Power button on the HP printer to turn it off.
    Disconnect the power cord from the rear of the HP printer.
    Disconnect the power cord from the wireless router.
    Turn off the computer.
    Wait 30 seconds.
    Reconnect the power cord to the wireless router.
    Wait 30 seconds, or until the router is fully on and ready.
    Turn the computer back on.
    Wait for the computer to reload.
    Reconnect the power cord to the rear of the HP printer.
    Turn the printer back on.
    Once this is done, then I would run the Wireless Setup Wizard in the Setup>Network menu to reconnect to the network.  At this point are you able to print normally?
    Jason
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • HP Officejet 6500A Plus e-All-in-One Printer - E710n wireless print and web app problem

    We have an HP Officejet 6500A Plus e-all-in-one Printer - E710n and run Windows 7 on our laptop.
    I have run the wirelss setup wizard and have successfully connected the printer to the router, and both the laptop and printer are on the same network and have identical SSID.
    However, we can not send any prints the printer wirelessly. We have to hook it up to the USB to do so. We are also unable to access our web apps; pressing the app button on the printer control panel brings up the following:
    "Connection error. The printer was unable to connect to the server. Check your internet connection and try again."
    I have run through the suggested solutions under "A Network Connected Printer Cannot Access Print Apps, Web Services, or ePrint" in the customer care help centre which didn't work, although when I tried to enter the IP address under IPv4 into the browser address bar it timed out. I tried the HP Print and Scan Doctor, but it returns a result that suggests everything is fine.
    I turned off the firewall and tried again with no luck.
    I really am at a loss now. Diagnostics say it should work, but it doesn't. Help!

    Disable Bitdefender altogeher and try again.
    Also, see this: http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c02251103
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    I have the 6500A without plus and it is with a LAN cable connected with my Router.
    First make sure you have the latest printer firmware installed.
    Next restart the printer and the Router.
    I had the same. Problem but it went away after rebooting the Router.

  • Augmented reality on mobile devices (android and ios)

    Him, is there already some sort of extension for AIR 3 capable of identify visual tags for augmented reality applications on android and on iOS?

    Hi CK,
    I think we may need to create a policy in Network Policies. Please follow the steps below,
    Right click Network Policies, Click New.
    Enter the policy name, click Next.
    Click Add, select the Day and Time Restrictions, click
    Add.
    In the Day and Time Restrictions, choose Permited for
    all, click OK.
    Click Next five times(leave everything default), click
    Finish.
    Move the policy to top and try to connect with your device.
    If issue persists, please make sure that the Connection Requet Policies have been configured properly.
    For detailed information about how to create a network policy, please refer to the link below,
    Configuring NPS network policies
    http://technet.microsoft.com/en-us/library/dd441006.aspx
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Having difficulty scanning and copying on Office jet 6500A plus.  Prints fine.  Scans and copies are illegible and contain hundreds of vertical lines.  I did all of the various cleaning tasks suggested.

    Having difficulty scanning and copying on Officejet 6500A Plus.  Prints fine.  Scans and copies are illegible with hundreds of verticle lines on the page.  I did all of the various cleaning and restart suggestions, but still doesn't work.

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • Windows Folder icon instead of Officejet 6500a Plus E710n icon in Devices and Printers

    Can anyone help me to get the OfficeJet 6500a Plus e710n printer icon to display properly in Devices and Printers?
    I recently reinstalled Windows 8.1.  However, when I installed my printer, instead of the printer icon appearing in Devices and Printers I get a generic yellow Windows folder icon.  The Fax icon is OK, just the printer icon is wrong.
    If I double click on the icon, I get a mostly blank page with a message near the top saying: "Updated information is available about your device.  Click here to download or learn more."  If I click on the notice, a dropdown menu appears with "Download updated information" or "Learn more".  If I choose downloaded update information, a new printer window appears which is mostly blank except for a message at the centre of the window which says, "No tasks are available on this page"  The Learn more option just gives me info about updating drivers.
    The printer icon on the Start menu is fine.
    I've used HP Print and Scan Doctor to uninstall and reinstall my printer but this hasn't helped.  The program found a problem with the printer driver and fixed it, but that hasn't changed the icon either.
    I am running Windows 8.1 Pro 64bit fully up to date, and used the latest full version of the HP installation program for the printer (not the basic version) and HP Print and Scan Doctor v4.6.
    This question was solved.
    View Solution.

    Hi,
    Try following these steps and let me know if that may help:
    From the control Panel select Network and internet and open the Network and Sharing Center.
    Click on Change Advanced Sharing Center.
    Ensure that Network Discovery is trned on but uncheck the box next to "Turn on automatic setup of network connected devices".
    From devices and printer right click the printer and select Remove Device, repeat the for the Fax icon.
    Note: if no such option exists for the printer follow the next steps.
    Right click the background area and select Device Mahager.
    Remove any instance of the printer from Imaging Devices, Printers, Print Queues, Multifunction Adaptors, Other Devices (if a such exists).
    Once you are done the printer should no longer appear under Devices and Printers...
    Open teh HP Officejet 6500 E710 software, select Connect a new Printer and check for any differnce.
    Hope that helps,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

Maybe you are looking for