What is the easiest way to zoom into a picture?

Once I generated a picture, what is the easiest way to zoom into it?
I.e. Mantaining the same picture size on the screen, but reducing the
field of view on a certain section, in order to make it bigger?
Thanks.
G.

If you are using the picture control in version 6.0 you are out of luck, if I remember correctly, the zoom property was add in version 7.0 ( I could be wrong) .  The math is simple on zooming a picture however consisting of a translation and scaling factor only.  Lets assume we have a picture in a 600x800 (height pixels by height pixels) to zoom in to the center we use the center pixel (600/2, 800/2) and make the array subset of the zoomed image from center - (height/2)/zoom_factor and a zoomed height of height/zoom_factor and do the same for width.  So basically you find the center pixel (need not be the center of the image) and get a subset of the initial image array data with a new height and width both divided by the zoom factor.
Paul
Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA

Similar Messages

  • What's the easiest way to transfer all my pictures and music from my old PC to my new Mac?

    I just recently got a Mac and wanted to know the easiest way to transfer my pictures and music from my PC to my Mac.

    Welcome to the Apple Support Communities
    The best and easiest way is by using Windows Migration Assistant. Apart from that, this app allows you to transfer other things, that you can check in this page > http://support.apple.com/kb/ht4796 You have also the steps to transfer your data to your Mac in that page.
    If you don't want to use it, just copy your music and pictures to an external drive and transfer them to the Mac

  • What is the easiest way to convert a jpeg into a watermark with CC 2014?

    What is the easiest way to convert a jpeg into a watermark with CC 2014?
    I signed a paper and uploaded the image to the computer as a jpeg to be turned into a watermark.  I'd done it before for a different kind of photography, but have not done it in so long that I cannot remember the steps nor can I find the tutorial video I had watched that taught me how to do it.
    Any help would be greatly appreciated

    Adding to what others have said, if you want to repeat the watermark across the image, it's relatively easy:
    As JJ said, you want to create an image with a transparent background. You can even use his script. Once you've done all that, click Image > Trim with the "transparent pixels" option and leave all the "trim away" options checked.
    Click Edit > Define Pattern to name the pattern.
    Open the image you want to apply the watermark to. Create a new blank layer. (ON EDIT: Select the blank layer.)
    Click Edit > Fill and use the Pattern option under Contents. Choose the pattern you made earlier. Click OK.
    At this point, you can leave it as is or use blending modes and layer opacity to taste. Example:

  • What is the easiest way to get scanned photos from MP Navigator to iPhoto?  I thought last time I did this I could highlight and drag into iPhoto?

    What is the easiest way to get scanned photos from MP Navigator into IPhoto?  I cannot highlight and drag/drop.

    Contact the manufacturer (Canon?). 

  • What is the easiest way to get music into itunes library?

    Hey everyone, what is the easiest way to get my songs into itunes without importing them one by one. For example, if you download several songs with Limewire is there a way to make them automatically download into Itunes or do you have to add file or import them manually. I tried to be slick and change the folder that the limewire was saving songs into to make it the same as the itunes library folder. I didn't do something right apparently cause I still have to either add file or import to get the songs. I wish there was a way to just auto download them into the itunes or scan the computer for new songs.

    Does this software do what you want?
    (31108)

  • What's the easiest way to embed a video into a specific part of an image map?

    What's the easiest way to embed a video into a specific part of an image map?
    Anybody help? Is there a way to do this in Dreamweaver?

    One way would be to create your image map first. Then, use the CSS property position to position the div containing the video player relative to the image map or absolute to the page (depending on how your website layout is).
    Then, use an event listener (javascript) to enable the div holding the video player to show only when the specific area on the image map is clicked.

  • What is the easiest way to create alias email addresses in exchange 2013?

    For example my official domain is [email protected]
    Within my company i want to make it look like certain departments are sending from bicycles.com skateboards.com
    and skooters.com and receive to those addresses even though the emails are really going through the
    [email protected] domain. but it appears to be coming from three other domains.
    appearance is everything. What is the easiest way to accomplish this.
    Step by step with examples if possible. I am not well versed in exchange server 2013 yet.
    Droid Hacker

    In Exchange 2013 you can use the ECP to add additional email addresses to mailboxes. In order for a mailbox to send using an address, that address needs to be set as the reply address. One mailbox cannot send as multiple addresses. Doing that would require
    a mailbox for each address. To set a new primary address on a mailbox log into the ECP and choose mailboxes under the recipients option on the left. Then search for the mailbox you want to add the address to and click the edit symbol. Navigate to the
    Email Address tab on the left. To set a new primary address you will likely need uncheck the box for "Automatically update email addresses based on the email address policy applied to this recipient". Then click the plus button, enter the new address,
    and check the box for "Make this the reply address"
    Before you do this you should ensure that the proper MS records exist for these other domains, and that they are properly configured for mail flow. Once you set this as the reply address for a mailbox, that is the address external users will use for replies.

  • What is the easiest way to add a slide show to a dream weaver page?

    What is the easiest way to add a slide show to a dream weaver page?

    Copy & paste the following code into a new, blank document.  Change images to your own.  SaveAs test.html and preview in browsers. 
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Cycle2</title>
    <!--help for older IE browsers-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!--Latest jQuery Core Library-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--Cycle2 Slideshow Plugin-->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
    <style>
    /**Slideshow**/
    .cycle-slideshow {
        position: relative;
        z-index: 1;
        width: 400px; /**adjust width as required**/
        margin:75px auto;
        text-align: center;
    .cycle-slideshow img { max-width: 100% }
    /* prev / next links */
    .cycle-prev, .cycle-next {
        position: absolute;
        top: 0;
        width: 20%;
        opacity: 0;
        filter: alpha(opacity=0);
        z-index: 800;
        height: 100%;
        cursor: pointer;
    .cycle-prev {
        left: 0;
        background: url(http://malsup.github.com/images/left.png) 50% 50% no-repeat;
    .cycle-next {
        right: 0;
        background: url(http://malsup.github.com/images/right.png) 50% 50% no-repeat;
    .cycle-prev:hover, .cycle-next:hover {
        opacity: .7;
        filter: alpha(opacity=70)
    /**END SLIDESHOW STYLES**/
    </style>
    </head>
    <body>
    <h1><a href="http://jquery.malsup.com/cycle2/">JQuery Cycle2</a></h1>
    <!--begin slideshow-->
    <div class="cycle-slideshow"
        data-cycle-fx="fade"
        data-cycle-timeOut="2000"
        >
    <!-- prev/next links -->
    <div class="cycle-prev"></div>
    <div class="cycle-next"></div>
    <!--insert your images below-->
    <img src="http://jquery.malsup.com/cycle2/images/p1.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p2.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p3.jpg" alt="description">
    <img src="http://jquery.malsup.com/cycle2/images/p4.jpg" alt="description">
    <p>Mouse over image for previous / next links</p>
    </div>
    <!--end slideshow-->
    </body>
    </html>
    Nancy O.

  • What is the Easiest way to create a playlist?

    What is the easiest way to create a playlist without going through all 1500 in my iTunes?  I know some artists I want all their songs.......others I don't.

    I have WMP on my computer and know you can quite easily make playlists within it.
    Then if you connect your player to the computer and drag and drop the playlist into the sync
    screen you should then be able to transfer it to the player.
    Not tried this way as I always use Zen Media Explorer for making playlists.
    Gi've it a try-you have nothing to lose.
    Best of Luck
    ZENFLASH

  • I have a new iMac. I have set up a user page for myself, for my wife and an administrator page. My question is my wife needs files from my user page transferred to her page. What's the easiest way?

    I have a new iMac. I have set up a user page for myself, for my wife and an administrator page. My question is my wife needs files from my user page transferred to her page. What's the easiest way?

    I've done this by dragging files from my user page to her drop box. In Finder, drag the required files and hover over the hard disc icon in the navigation bar on the left. As you hover, it will open another finder window showing the contents. Work your way down these windows into <Her username | Public | Dropbox>. Drop the files into the dropbox. She can then retrieve them from her user page.
    Good luck,
    Stephen

  • What is the easiest way to convert .MTS files for use in Final Cut Express

    I initially downloaded my Sony Alpha7 files into iMovie. As the production requires a little more professional software I then tried to import files into Final Cut Express. As these are now .MTS files what is the easiest way of converting them?

    Hey Martin et al,
    Related question...
    After you convert files from M2TS or MP4 into something usable in FCE can you trash the original M2ts/mp4 files ?
    I recently used Mpeg Streamclip to convert Mp4 into AIC for FCE for example..
    Is there a general rule of when you have to save original files so everything works in FCE?
    I'm running out of HD space.
    Thanks a lot,
    Al

  • TS1463 What is the easiest way to restore my ipod back to factory specs. It has a red circle with a red x in the middle,please help me to fix my ipod, until now i can't use my ipod..i tried all the procedures in Restore ipod from disk mode but still not w

    What is the easiest way to restore my ipod back to factory specs. It has a red circle with a red x in the middle,please help me to fix my ipod, until now i can't use my ipod..i tried all the procedures in Restore ipod from disk mode but still not working, please help me...

    If you are unable to get the iPod into Disk Mode to try and restore it, it's a very good indication, as mentioned in the article, that the iPod's hard drive is damaged and in need of replacement either by Apple or a third party repair company.
    B-rock

  • What is the easiest way to transfer music from my ex's itunes library to mine? We both have Macbooks and we do have home sharing.

    Over the years my ex's and I bought tons of music off itunes, but always bought it on her Macbook. Now that we aren't together I want to copy all of the music from her itunes library and import it into mine. Is this possible, and what is the easiest way?
    Many Thanks

    the simplest way, assuming all your media files are in the default location, would be to connect the two Macs with a firewire cable, boot the source Mac in Target Disk Mode, and copy the entire iTunes folder (not just the iTunes music folder) from <MacintoshHD>/users/yourname/music on the source to <MacintoshHD>/users/yourname/music on the target (overwriting the iTunes folder in place there).
    that would ensure everything (including playcounts, ratings, original "date added", which home sharing doesn't copy over) will be transferred. it would also ensure that any mobile devices (iPhone, etc.) will simply keep on syncing without problems.
    you can also use an external HD (or your LAN) but make sure to copy the entire iTunes folder.

  • Fonts - What's the easiest way to do this?

    Hi All,
    I'm in a situation at the moment where I would like to put the JDK 1.4 fonts into a JDK 1.3 program..
    What's the easiest way to do this?

    Hi,
    perhaps you can get no answer, because it is not clearly said, what you want to do?- From which JDK 1.4 Fonts are you talking of?- What is meant by this?- The Font class or what else?- Do you want to replace one or more .class files of JDK 1.3 by one of JDK 1.4?
    In general you are not allowed to replace parts of the packages or subpackages of "java", "javax" or "sun" or add or remove classes to resp. from them - you accepted this terms when you had downloaded the JDK - sure, it is possible, but you are not allowed to do so - it is illegal.
    greetings Marsian

  • What is the easiest way to move my iPhoto library from my macbook to my new mac pro?

    What is the easiest way to move my iPhoto library from my macbook to my new mac pro?

    Surprisingly easy! Go into the Finder, then into the Photos Library. In there, there will be a file called your iPhoto Library. It holds all your photos, essentially a special type of folder. Using an external hard drive transfer it to the same location on your new Mac. Now, when you boot iPhoto on the new Mac, it will recognise it and you'll see all your photos instantly!
    There's a really good video on it here...
    https://www.youtube.com/watch?v=J6N2K_gRKsQ

Maybe you are looking for

  • Gallery app crashes

    Problems with my iPhone gallery app (iPhone 4, OS 4.1). It was working fine, then I added two new albums with about 120 photos in each.... and now the app crashes. It appears to be booting properly, but when it starts the image scroll across the top

  • Acrobat standard xi - installer for named licenses

    Hi guys, apart from the web installer that users with admin rights can install themselves is there an alternative installer that can be used for silent installs? (for SCCM).

  • Will not show on iTunes, unable to load more tunes!

    Without showing on iTunes I can not change my music / podcasts / etc.   I've reset, adjusted and completed all of the suggestions given on the web-site.  What to do?? Gary

  • Flash button text dont fit!

    when i create a flash button, the text i have provided for inside of the button doesn't fit. Some letters are missing, but when i change the width or height of the button; the button is just white around the area i made bigger. therefore not really d

  • Updating Oracle 9.2.0.1.0

    I have a metalink account, but can't seem to figure out where to go to update Oracle database 9.2.0.1.0 to 9.2.0.5.0. I want to install the Jan 2006 CPU and I believe I need to update to 9.2.0.5.0 first. Can someone point me in the right direction? t