help-octave
[Top][All Lists]
Advanced

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

imshow: flicker and superposition problem


From: jmb
Subject: imshow: flicker and superposition problem
Date: Sat, 21 Jun 2014 15:13:58 -0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0

I am trying to use something like the following code to superimpose a
displayed value over a static image.

I am running into 2 problems with octave 3.2.4 (in Ubuntu12.04.4 32bit)

a) A flickering that would like to suppress as the image is erased and
redisplayed within each cycle of the 'while' loop.

b) if I comment out the imshow(I) inside the loop then the value of
P{amb} overwrites the previously displayed value and soon I get one
black mass of lettering that one cannot read.

I have tried methods that have failed.  Can anybody suggest a fix?

Thanks!


==================================================================
pkg load image;
I = imread ("Schematic.png");
imshow (I);
hold("on");

DisplayPres = true;
while true
#       imshow (I);

        if DisplayPres == true
                Display_Value("P_{amb}=", "bar", P, 0, 0);
                P = P + 0.001;
        endif
        sleep(1);
endwhile
==================================================================



reply via email to

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