Category "rgb"

Is there a way to extract frame by frame Both the Depth and RGB from an MP4 captured using ARCore API?

I tried creating a scanner through Recording and Playback API from ARCore in Android Studio, right now I can save the mp4 file format. I assumed that the mp4 fi

sws_scale, YUV to RGB conversion

I need convert YUV to RGB. I also need the RGB values to be in the limited range (16-235). I try to use sws_scale function for this task. My code you can see be

Is there a way to use ffmpeg for RGB to true YUV (not YCbCr) conversion?

As far as I can see in the documentation, all conversions involving YUV actually use YCbCr. There are slight differences though, and I would like to convert to

Color RGB in BackColor's Form

I'd like to put the RBG color In the property of the form, not like code, but when I try I got this error. "0, 161, 230 no es un valor válido para Int32

Converting Hex to RGB value in Python

Working off Jeremy's response here: Converting hex color to RGB and vice-versa I was able to get a python program to convert preset colour hex codes (example #B

How to make all series in a chart the same color?

How do I color all the series (lines) in a specific (selected/current) chart the same color? I have the following, but it does nothing: Sub Same_Color() Dim

Converting from HSV (HSB in Java) to RGB without using java.awt.Color (disallowed on Google App Engine)

I figured I should post this question, even if I have already found a solution, as a Java implementation was not readily available when I searched for it. Usin

Pixel Depth vs. Color Depth

The question is, what is the difference between color depth and pixel depth? Searching Pixel Depth on google simply give links to Color Depth. Even the dicti

Converting an RGB color tuple to a hexidecimal string

I need to convert (0, 128, 64) to something like this "#008040". I'm not sure what to call the latter, making searching difficult.