octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #48764] No output of imshow() for big images


From: Felix
Subject: [Octave-bug-tracker] [bug #48764] No output of imshow() for big images
Date: Fri, 12 Aug 2016 16:14:50 +0000 (UTC)
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0

URL:
  <http://savannah.gnu.org/bugs/?48764>

                 Summary: No output of imshow() for big images
                 Project: GNU Octave
            Submitted by: fefe
            Submitted on: Fri 12 Aug 2016 06:14:48 PM CEST
                Category: Plotting
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 4.0.0
        Operating System: Microsoft Windows

    _______________________________________________________

Details:

There will be NO grapic output if imshow is used for large images.


img_data = uint8(randn(3072, 4096)*255);
figure(); imshow(img_data)


If the range to display will be reduced, the selected image range will be
shown as expected.


img_data = uint8(randn(3072, 4096)*255);
figure(); imshow(img_data(1:2050,1:4096))


The same for RGB images.




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?48764>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]