https://www.youtube.com/watch?v=WQeoO7MI0Bs&list=PL4ve0MDPJ_Ht8atBpL7BYqIwOgJjnWbvH&index=41&t=52s
https://www.murtazahassan.com/courses/learn-opencv-in-3-hours/lesson/complete-course/
0 = Black 255 = White
254 shades of grey
RGB = Red, Green, Blue
Python 3.7
https://pypi.org/project/opencv-python/
pip install opencv-contrib-python
640
(0,0) ------------------>
|
| (150, 240)
480 |
|
|
\/-----------------(640,480)
Steel grey
https://www.htmlcsscolor.com/hex/43464B
- (0, 0, 0) = Black
- (255, 255, 255) = White
- (255, 0, 0) = Blue
- (0, 255, 0) = Green
- (0, 0, 255) = Red
- (255, 255, 0) = Blue + Green = Cyan
- (255, 0, 255) = Blue + Red = Magenta
- (0, 255, 255) = Green + Red = Yellow
https://www.murtazahassan.com/courses/learn-opencv-in-3-hours/lesson/chapter-6-joining-images/