Displaying 9 results from an estimated 9 matches for "yellowish".
2008 Jun 06
4
color scale mapped to B/W
...iable, where green means 'OK', yellow
represents 'warning'
and red represents 'danger'. Using these particular color names, in B/W,
red is darkest
and yellow is lightest. I'd like to find color designations to replace
yellow and green so
that when printed in B/W, the yellowish color appears darker than the
greenish one.
Is there some tool/code I can use to find these? i.e., something to
display a grid
of color swatches with color codes/names I can look at in color and B/W
to decide?
t hanks,
--
Michael Friendly Email: friendly AT yorku DOT ca
Professor, Psyc...
2004 Jul 19
1
An image() problem related to Affy package in BioC
...ductor. I asked
it in BioC and didn't get any responses. Sorry to post again:
Could anyone tell me how to draw a deep-blue Affymetrix image through
Image() function in Affy package? The default settings of image() draw me a
black-white image and if I modify it to 256 colors, I get a somehow
yellowish image. The reason for me to draw a deep-blue one is because I
found most of papers display the spotted cDNA microarray image as red-green
and the Affymetrix chip image as deep-blue.
Thank you very much,
Frank
[[alternative HTML version deleted]]
2015 Mar 10
3
Asterisk 13.2.0 Video issues
...m Groundwire video sip (IOS since Android version does not H264
codec) to Grandstream GXV3175, Asterisk stops
Calls between SIP Video softphones works well no issues.
Calls from SIP video softphones (BRIA) to Grandstream GXV3275 works well.
(Acrobitz Groundwire to GXV3275 picture on Grandstream is yellowish)
Calls between GXV3275 and GXV3175 video streaming is very slow on the
GXV3175 (this is not the case under Asterisk 12.8.1)
Calls from GXV3175 to Bria (video is displayed on bria side only)
There might be an issue on the Grandstream sip video phones as far as H264
is concerned however the case of...
2015 Mar 10
3
Asterisk 13.2.0 Video issues
I recently compiled asterisk 13.2.0 on an RK3288 , I am suspecting problems
with the format H264, Asterisk 12.8.1 compiled on the same hardware is
behaving very well for the same format H264
Problem of asterisk 12.8.1 is IAX2 trunk bad voice quality.
Could someone investigate the problem of Asterisk 13 with video support on
H264 ?
Thank you.
-------------- next part --------------
An
2012 Mar 08
1
Thunderbird and Firefox 10 font rendering
...I just upgraded to CentOS 5.8 and got Thunderbird and Firefox 10, and I
regret it already... I find that reading texts in these new versions is
much more straining to the eyes than it used to be, as something must
have changed with the font rendering - simply put, all letters appears
to have a yellowish halo or "ghost". I'm sure the colour is an optical
illusion, but again, something appears to be off with the display - and
it's not the fonts as such, as they are the same as the desktop
defaults, and I don't see this in other applications. The problem is
particularly bad...
2013 Jul 05
1
gspca - running out of ideas
.... Googling, I find other folks
have had green screens over the years, so it's not just some color setting
on my workstation.
By adding /usr/lib64/libvdpau.so.1 to the LD_PRELOAD in
/etc/init.d/motion, I get the rest of the screen on the Intel box looking
like it works, but there's a slight yellowish tinge to the rest of the
screen, and when I watched what we see using
mplayer tv:// -tv driver=v4l2:device=/dev/video0
not only do I see the same, but we had someone walk in view of the
camera... and *only* that top little bit shows the motion; the other 80%
or 85% shows only what's there, and...
2015 Mar 12
0
Asterisk 13.2.0 Video issues
...em that
you see with the Bria phone, or it may be something else.
> Calls between SIP Video softphones works well no issues.
Well, that's good. :-)
> Calls from SIP video softphones (BRIA) to Grandstream GXV3275 works well.
> (Acrobitz Groundwire to GXV3275 picture on Grandstream is yellowish)
> Calls between GXV3275 and GXV3175 video streaming is very slow on the
> GXV3175 (this is not the case under Asterisk 12.8.1)
> Calls from GXV3175 to Bria (video is displayed on bria side only)
Since there are some that work fine, and some that don't, the trick is
going to be knowin...
2015 Mar 16
2
Asterisk 13.2.0 Video issues
...em that you see with the Bria
phone, or it may be something else.
> Calls between SIP Video softphones works well no issues.
Well, that's good. :-)
> Calls from SIP video softphones (BRIA) to Grandstream GXV3275 works well.
> (Acrobitz Groundwire to GXV3275 picture on Grandstream is yellowish)
> Calls between GXV3275 and GXV3175 video streaming is very slow on the
> GXV3175 (this is not the case under Asterisk 12.8.1) Calls from
> GXV3175 to Bria (video is displayed on bria side only)
Since there are some that work fine, and some that don't, the trick is going
to be know...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.