I want to zoom into digital image pixels.

To demonstrate DSLR chip behavior at high magnification, I want to zoom into the frame and see how individual pixels actually look.
But when I use the Scale tool to enlarge the picture, FCPX thinks I want to avoid seeing pixels so it mushes the image, blurring all the pixels.
How do I get it to stop doing that? Can it be done in Motion?
Photoshop scaling has all these Bicubic options, but it also has the Nearest Neighbor option so I can see individual pixels in the blow up, there. Is there a way to get FCPX to do the same idea?

Peter Inova1 wrote:
When you are zooming into a movie that is made in a way to reveal an HDSLR's blown pixels, it would be nice to see them as a pixel map.
again: the actual compression (from any cam!) doesn't deliver single pixels.
it starts on the sensor of the cam - ever heard of the Bayer Filter?
http://en.wikipedia.org/wiki/Bayer_filter
if you could read out the raw data of that chip, you'd notice twice as much green 'dots' than red and blue, oops!
next, your cam compresses '4:2:0'
http://en.wikipedia.org/wiki/4:2:0
that Chroma Subsampling drops 7 of every 8 'color dots' ... most pixels are 'grey'!
finally, it's a lossy codec, working with 'assumptions'
http://en.wikipedia.org/wiki/Inter_frame
picture-prediction .... that's bits, not atoms
on de-coding, final delivery, these 'formulas' are calculated to a 1920x1080 picture ... but that is not the 'pixel reality' from your cam, nor on its sensor, nor in the file.
so, a zoom-to-pixel-level is a special effect, as mentioned above, create a close-up in Photoshop, showing r/g/b- squares … but this is not reality.

Similar Messages

  • How do I get sharp pixels when zooming into an image?

    Motion does a great job of smoothing imported images, but for my current project, I want sharp edges on the images pixels rather than blurred-together colors. I need to zoom way into an image and show a sharp mosaic of image pixel squares. Is there any way to accomplish this?

    1) Motion shouldn't be blurring your imported images at all - if you scale them large enough (easiest in the Inspector), you should be able to see the individual pixel blocks of color.
    2) You could always use the Pixelate filter (pretty sure it's there, I'm away from Motion right now)

  • Just purchased CC Lightroom & Photoshop following a 30 day free trial. All worked well during the trial but now I have subscribed to the plan and downloaded the latest LR version I am unable to zoom into the images and just get a constant 'loading' box an

    Just purchased CC2015 Lightroom & Photoshop following a 30 day free trial. All worked well during the trial but now I have subscribed to the plan and downloaded the latest LR version I am unable to zoom into the images and just get a constant 'loading' box and spinning circle. Also, the whole system is very slow - very frustrating! Any ideas? I am running it on Windows 8.
    Mick

    You keep asking variants on this same question. You've had replies in all your other threads. If you can't find them, go here and click where it says Activity:
    Thomas Cannon Jr.

  • I am wondering how to zoom into a video in iMovie '09. For example I want to  zoom into a certain part of the video. Is there any way to do this???

    I am wondering how to zoom into a video in iMovie '09. For example I want to
    zoom into a certain part of the video. Is there any way to do this???

    Yes.
    If you want to see the zoom, use the Rotate, Crop, Ken Burns Tool and select the Ken Burns effect. You can set the starting and ending rectangle for your zoom.
    If you want to go directly to the zoom, use the Rotate, Crop, KenBurns Tool and select Crop. Set the rectangle to be where you want the zoom.

  • How to zoom into a specific part of an image?

    I am trying to mess around with2DGraphics and affinetramsform to zoom into a section of an image but i have no luck doing it. Can someone help me out? Lets say I want to zoom into the coordinates (200,300) and (400,600) . I know DrawImage has a method that does this but does 2DGraphics have it too or affinetransform? I havent see anything like it yet. thanks

    you could check this
    http://www.javareference.com/jrexamples/viewexample.jsp?id=84
    it may help you

  • How to have 2DGraphics zoom into a specific part of an image?

    I am trying to mess around with2DGraphics and affinetramsform to zoom into a section of an image but i have no luck doing it. Can someone help me out? Lets say I want to zoom into the coordinates (200,300) and (400,600) . I know DrawImage has a method that does this but does 2DGraphics have it too or affinetransform? I havent see anything like it yet. thanks

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ZoomIt extends JPanel {
        BufferedImage image;
        Dimension size;
        Rectangle clip;
        AffineTransform at = new AffineTransform();
        public ZoomIt(BufferedImage image) {
            this.image = image;
            size = new Dimension(image.getWidth(), image.getHeight());
            clip = new Rectangle(100,100,200,200);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            g2.drawRenderedImage(image, at);
            g2.setColor(Color.red);
            g2.draw(clip);
            //g2.setPaint(Color.blue);
            //g2.draw(at.createTransformedShape(clip));
        public Dimension getPreferredSize() {
            return size;
        private void zoomToClip() {
            // Viewport size.
            Dimension viewSize = ((JViewport)getParent()).getExtentSize();
            // Component dimensions.
            int w = getWidth();
            int h = getHeight();
            // Scale the clip to fit the viewport.
            double xScale = (double)viewSize.width/clip.width;
            double yScale = (double)viewSize.height/clip.height;
            double scale = Math.min(xScale, yScale);
            at.setToScale(scale, scale);
            size.width = (int)(scale*size.width);
            size.height = (int)(scale*size.height);
            revalidate();
        private void reset() {
            at.setToIdentity();
            size.setSize(image.getWidth(), image.getHeight());
            revalidate();
        private JPanel getControlPanel() {
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1.0;
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            panel.add(getZoomControls(), gbc);
            panel.add(getClipControls(), gbc);
            return panel;
        private JPanel getZoomControls() {
            final JButton zoom = new JButton("zoom");
            final JButton reset = new JButton("reset");
            ActionListener al = new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    JButton button = (JButton)e.getSource();
                    if(button == zoom)
                        zoomToClip();
                    if(button == reset)
                        reset();
                    repaint();
            zoom.addActionListener(al);
            reset.addActionListener(al);
            JPanel panel = new JPanel();
            panel.add(zoom);
            panel.add(reset);
            return panel;
        private JPanel getClipControls() {
            int w = size.width;
            int h = size.height;
            SpinnerNumberModel xModel = new SpinnerNumberModel(100, 0, w/2, 1);
            final JSpinner xSpinner = new JSpinner(xModel);
            SpinnerNumberModel yModel = new SpinnerNumberModel(100, 0, h/2, 1);
            final JSpinner ySpinner = new JSpinner(yModel);
            SpinnerNumberModel wModel = new SpinnerNumberModel(200, 0, w, 1);
            final JSpinner wSpinner = new JSpinner(wModel);
            SpinnerNumberModel hModel = new SpinnerNumberModel(200, 0, h, 1);
            final JSpinner hSpinner = new JSpinner(hModel);
            ChangeListener cl = new ChangeListener() {
                public void stateChanged(ChangeEvent e) {
                    JSpinner spinner = (JSpinner)e.getSource();
                    int value = ((Integer)spinner.getValue()).intValue();
                    if(spinner == xSpinner)
                        clip.x = value;
                    if(spinner == ySpinner)
                        clip.y = value;
                    if(spinner == wSpinner)
                        clip.width = value;
                    if(spinner == hSpinner)
                        clip.height = value;
                    repaint();
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(2,2,2,2);
            gbc.weightx = 1.0;
            addComponents(new JLabel("x"),      xSpinner, panel, gbc, cl);
            addComponents(new JLabel("y"),      ySpinner, panel, gbc, cl);
            addComponents(new JLabel("width"),  wSpinner, panel, gbc, cl);
            addComponents(new JLabel("height"), hSpinner, panel, gbc, cl);
            return panel;
        private void addComponents(Component c1, JSpinner s, Container c,
                                   GridBagConstraints gbc, ChangeListener cl) {
            gbc.anchor = GridBagConstraints.EAST;
            c.add(c1, gbc);
            gbc.anchor = GridBagConstraints.WEST;
            c.add(s, gbc);
            s.addChangeListener(cl);
        public static void main(String[] args) throws IOException {
            String path = "images/owls.jpg";
            BufferedImage image = ImageIO.read(new File(path));
            ZoomIt test = new ZoomIt(image);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(test));
            f.getContentPane().add(test.getControlPanel(), "Last");
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • Zooming into the center of an image

    Hi, I have this code that allows the user to zoom into an image that they have selected. However, when the image is zoomed into using the slider, it goes towards the top left corner of the image rather than the center. How can I modify my code to zoom into the center of the image instead?
    import java.awt.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import javax.swing.event.*;
    public class MapScale extends JPanel
         BufferedImage image;
         double scale = 1.0;
         public MapScale(BufferedImage image)
              this.image = image;
         protected void paintComponent(Graphics g)
              super.paintComponent(g);
              Graphics2D g2 = (Graphics2D)g;
              g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC);
              double x = (getWidth() - scale*image.getWidth())/2;
              double y = (getHeight() - scale*image.getHeight())/2;
              AffineTransform at = AffineTransform.getTranslateInstance(x,y);
              at.scale(scale, scale);
              g2.drawRenderedImage(image, at);
         public Dimension getPreferredSize()
              int w = (int)(scale*image.getWidth());
              int h = (int)(scale*image.getHeight());
              return new Dimension(w, h);
         private JSlider getSlider()
              int min = 1, max = 36;
              final JSlider slider = new JSlider(min, max, 16);
              slider.setMajorTickSpacing(5);
              slider.setMinorTickSpacing(1);
              slider.setPaintTicks(true);
              slider.setSnapToTicks(true);
              slider.setPaintLabels(true);
              slider.addChangeListener(new ChangeListener()
                   public void stateChanged(ChangeEvent e)
                        int value = slider.getValue();
                        scale = (value+4)/20.0;
                        revalidate();
                        repaint();
              return slider;
         public static void main(String[] args) throws IOException
              JFileChooser selectImage = new JFileChooser();
              if (selectImage.showOpenDialog(null) == JFileChooser.APPROVE_OPTION)
                   String path = selectImage.getSelectedFile().getAbsolutePath();
                   BufferedImage image = ImageIO.read(new File(path));
                   MapScale test = new MapScale(image);
                   JFrame f = new JFrame();
                   f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   f.getContentPane().add(new JScrollPane(test));
                   f.getContentPane().add(test.getSlider(), "Last");
                   f.setSize(400,400);
                   f.setLocation(200,200);
                   f.setVisible(true);
    }

    KGCeltsGev wrote:
    Hi, I have this code that allows the user to zoom into an image that they have selected. However, when the image is zoomed into using the slider, it goes towards the top left corner of the image rather than the center. How can I modify my code to zoom into the center of the image instead?Since you use a JScrollPane and change the client size when you zoom in/out you need to scroll to the center every time you zoom in/out.
    This is done by using scrollRectToVisible.
    slider.addChangeListener(new ChangeListener() {
        public void stateChanged(ChangeEvent e) {
            int value = slider.getValue();
            scale = (value+4)/20.0;
            revalidate();     
            Dimension d = getPreferredSize();
            Dimension extentSize = ((JViewport) getParent()).getExtentSize();
            scrollRectToVisible(new Rectangle((d.width-extentSize.width)/2, (d.height-extentSize.height)/2, extentSize.width, extentSize.height));
    });

  • Can you zoom into a ibook image?

    Hi, is it possible to zoom into an image that is already full screen -- so that you can check out details in the photo?
    It seems to expand up with my fingers on my iPad, however, as soon as I let go of the image, it returns to full size,
    so I am not able to zoom in on parts of the image.  Is there a way to create images that appear in my ibook that are zoomable?
    Thanks,
    jkropp

    The OP stated that "if I drop my image into a widget, like gallery, I still can't get the image to zoom up...."
    As far as I know, gallery images are allowed to be larger precisely so that zooming in is possible without loss of quality.
    ....so what is your point about telling the OP that he isn't using a widget, when the OP explicitly stated that he is?
    Michi.

  • Looking for best way to convert 35 mm slides to digital images

    Hello Apple Community,
    Am researching best ways to convert several hundred 35 mm slides into digital images.  There are numerous scanners/converters out there but want to ensure I get the best unit compatable with my iMac (27 inch, Late 2009).  Any suggestions welcome.

    For scanning 35mm slides you need a scanner with a good photometric resolution and geometric resolution.
    For the photometric resolution: Get a scanner with a high density range (D-max) value, to get a good resolution of highlights and shadows.
    For the geometric resolution - sharpness and detail - try to get at least 3200 dp,i to be able to get good 8"x10" prints from your scanned slides, a higher dpi value, if you want to be able to print larger images.

  • Zoom into high resolution image

    Hi,
    Before starting to learn Muse, I've one big need: zooming into high-resolution images.
    I want to show how high the resolution is by letting the viewer zoom in with a loupe (or just scrolling with mouse wheel). I'm not talking about of a slideshow through some crops of the main image, but of an shrink- or grow effect of the image.
    Is this possible to achieve?
    Thanks for your insight,
    Dominique

    Could this be the solution, you are looking for?
    https://creative.adobe.com/addons/products/2406#.U8Jp1mIaySM

  • I have Photoshop CS 6 on my computer.  I want to bring a series of photos together into one image wi

    I have Photoshop CS 6 on my Mac computer.  I want to bring a series of photos together into one image without any space between images, does anyone know how to this?  Ideally I would like to this manually.  
    The reason I ask in my ealier verion of Photoshop, CS3, there was a manual alignment  feature when using 'Photo Merge' feature, undr which you could manual alignment photographs if you wanted to, and I do in this instance.  This feature was removed in subsequent versions of Photoshop CS 4,5, and 6. 

    Sean, Batch resize them all to the samne size, load as layers, increase Canvas size, and the layers will 'snap' together with the Move tool.  You'll be able to use the alignment tools in the Options bar when the Move tool is selected.  You will also be able to use the 'Auto select layer' feature in the Options bar to make it easier grabing the right layer.
    Otherwise, get hold of Contact Sheet 2. Still resize all the images to the same size, and set the gap to zero, and turn titles off.  Please note this is from memory, and it is years sonce I last used Contact Sheet.
    http://blogs.adobe.com/jkost/2012/06/contact-sheet-ii-and-pdf-presentation-return-to-photo shop-cs6-in-64-bit.html

  • I want to move a selection (a person) into an image of a brick wall and have it look like the person was painted on the wall. Can it be done? Using CC on iMac. Thanks

    I want to move a selection (a person) into an image of a brick wall and have it look like the person was painted on the wall. Can it be done? Using CC on iMac. Thanks

    Yes of course its Photoshop. Cut the person out copy to clipboard paste onto toe brick wall document  and texture the layer using a displacement map for the brick wall. Look for Photoshop tutorials on using a displacement map.

  • Want to convert  tif image file into jpg image file , pls help me

    hey coders, i want to convert a tif image file into a jpg image file , can u all help in this

    In it's simplest form, it's two lines of code.
    BufferedImage bi = ImageIO.read(/*the tif file*/);
    ImageIO.write(bi,"jpeg",/*output file*/);Though, you need to install [JAI-ImageIO|https://jai-imageio.dev.java.net/binary-builds.html] read the tif file into a BufferedImage.

  • Zooming into videoclips and image

    Hi I am trying to zoom into a recorded clip but I have problems doing so. Can some suggest a solution? Also can I am interested to zoom in an image. Is the method for zooming into video clips and still picture the same?

    *It's been working perfectly... I don't understand why it isn't now—why it needs handles now?*
    Because up till now, because of where you've placed in's and out's on the clips, you've had handles.
    It's not about the length of the clip. It's about having material available for the transition.
    Look at Nick Holmes diagram in this post.
    http://discussions.apple.com/thread.jspa?messageID=9157004&#9157004
    rh

  • Organize scanned slides and digital images into Adobe Lightroom 3

    I am working as a volunteer at a small museum, and need to import a large number of scanned slides and associated information into Adobe Lightroom. 
    Using photo scripts, specimen catalog, etc., adding metadata to each record so that specific slides can be located using appropriate key words.
    I also need to import digital images into Adobe Lightroom.  Adding metadata to each digital image so that specific images can be located using appropriate key words. 

    I am working as a volunteer at a small museum, and need to import a large number of scanned slides and associated information into Adobe Lightroom. 
    Using photo scripts, specimen catalog, etc., adding metadata to each record so that specific slides can be located using appropriate key words.
    I also need to import digital images into Adobe Lightroom.  Adding metadata to each digital image so that specific images can be located using appropriate key words. 

Maybe you are looking for

  • The volume keys on my MacBook Pro stop working after using headphones.

    The volume keys on my MacBook Pro recently stopped controling the volume after I've used headphones. I still have sound; I just can't make the volume increase or decrease. The mute, however, still works just fine. Because I have sound from the intenr

  • I'm updating my iPod Touch 5th Gen and it says "Connect to iTunes" and I have, but nothing happens.

    Okay, so, I unlocked my iPod and it said an update was available, so I tapped install. It wasn't connected to a power source, and I didn't think it'd make any difference if I was or not. So, I tapped it, blah, blah, blah, and then it said to connect

  • Need of Changing Parameters in Function Module

    Hi All, Why we need sepearte Import and Export parameters in Function Module if the Changing Parameters acts as both import and export parameters. What is the use of using Changing Parametrs in Function Module. Thanks in advance. Sundaresan

  • XI impoartance in MDM and SAP core?

    Hi Friends, I am new to the NW competency,Just working in XI. can any one explain the use and importance of XI in SAP and MDM. Thanks un advance. regards Mc

  • Saving Smart Collections

    Hello all, I've recently upgraded from CS4 to CS6, when I uninstalled my cs4 package I realsed I'd just lost all my smart collections in Bridge. However a colleuge of mine has these same smart collections set up in his Bridge CS6, so I was wondering