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

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

[Octave-bug-tracker] [bug #55999] Display images larger than GL_MAX_TEXT


From: Rik
Subject: [Octave-bug-tracker] [bug #55999] Display images larger than GL_MAX_TEXTURE_SIZE
Date: Wed, 27 Mar 2019 14:12:56 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko

Follow-up Comment #10, bug #55999 (project octave):

Should the warning, or the documentation, also talk about downsampling?  For
the example code,


imdata1 = 100*rand(100,10000);
image (imdata1);


the following is a workaround


downsample_idx = floor (linspace (1, columns (imdata1), 8192)); 
imdata2 = imdata1(:, downsample_idx);
image (imdata2);




    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?55999>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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