-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
136 lines (136 loc) · 5.83 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<title>Ideas on Board</title>
</head>
<body>
<div class="container">
<section class="main">
<div class="main-bg"></div>
<div class="main-content">
<img src="./img/logo.svg" alt="" />
<h1>Software consultancy for Multimedia in Linux</h1>
<p>We help you elevate your innovative multimedia solutions with the power of Open Source collaboration.</p>
<a href="#">Chat to us</a>
</div>
</section>
<section class="our-work">
<div class="text">
<h3>Our work</h3>
<h2>Take moments, make connections, and capture the world with digital vision in an open source world</h2>
<p>
We develop and drive the linux multimedia ecosystem for camera and display. Our mission is to deliver high quality software, consultancy, and advice to help you turn your ideas into an
immersive experience for your customers. <br /><br />
We help develop and maintain the Linux Camera subsystem and have designed, created and maintain the libcamera open source camera stack and UVC framework. <br /><br />
Ideas on Board has the experience to help you realise and implement advanced vision, perception and image processing use cases and leverage the full benefits of the Linux ecosystem within
your products.
</p>
<a href="#">Get in touch</a>
</div>
<div class="image">
<img class="large" src="./img/our-work-large.png" alt="">
<img class="small" src="./img/our-work-mobile.png" alt="">
</div>
</section>
<section class="projects-contributions">
<div class="text-statistics">
<div class="text">
<h3>Projects & Contributions</h3>
<h2>We commit</h2>
<p>
We've helped develop thousands of patches in Linux kernel v6.2. This work has been created by Ideas on Board and directly accepted into the Kernel. Ideas on Board maintains components in
the kernel and accepts code from other authors. <br />
<br />
All code merged through us has our Signed-off-by added. We also help validate other developments where we have the corresponding devices to do so.
</p>
</div>
<div class="statistics">
<div class="statistic">
<h2>4196</h2>
<p>Authored Patches</p>
</div>
<div class="statistic">
<h2>4908</h2>
<p>Signed-off-by Patches</p>
</div>
<div class="statistic">
<h2>2371</h2>
<p>Reviewed-by Patches</p>
</div>
<div class="statistic">
<h2>129</h2>
<p>Tested-by Patches</p>
</div>
</div>
</div>
<div class="projects">
<div class="project-container">
<div class="icon">
<img src="./img/placeholder.svg" alt="" />
</div>
<div class="text">
<h3>libcamera</h3>
<p>
Supporting cameras within the V4L2 subsystem has grown in complexity. We created 'libcamera' as a fully featured camera stack for Linux, ChromeOS and Android to help facilitate the
management and control of image acquisition, image processing algorithms and integration into applications.
</p>
</div>
</div>
<div class="project-container">
<div class="icon">
<img src="./img/placeholder.svg" alt="" />
</div>
<div class="text">
<h3>UVC Gadget</h3>
<p>
The benefit of the 'no-additional-drivers-required' ubiquity of UVC, makes it a great choice to connect your video streams to a host PC. We maintain and develop the UVC gadget drivers
for the Linux kernel and provide a support library and sample application for you to integrate and expose your custom use cases.
</p>
</div>
</div>
<div class="project-container">
<div class="icon">
<img src="./img/placeholder.svg" alt="" />
</div>
<div class="text">
<h3>UVC</h3>
<p>
USB connected cameras are ubiquitous and well supported in Linux through the use of UVC (USB Video Class). Ideas on Board created and continues to maintain the UVC drivers for Linux in
the V4L2 subsystem.
</p>
</div>
</div>
<div class="project-container">
<div class="icon">
<img src="./img/placeholder.svg" alt="" />
</div>
<div class="text">
<h3>Sensors and Receivers and ISPs</h3>
<p>
Ideas on Board continue to work with partners and silicon vendors to support and create kernel drivers for image sensors, MIPI CSI2 receviers and Image Signal Processors to manage the
hardware
</p>
</div>
</div>
</div>
</section>
<footer>
<img src="./img/footer-bg.svg" alt="" />
<div class="text">
<h3>Chat to us</h3>
<p>We’d love to hear from you! Please get in touch.</p>
<a href="mailto:[email protected]">Chat with us</a>
</div>
<div class="address">
<h4>Ideas on Board Oy.</h4>
<h4>Wallininkuja 4 B 4800530</h4>
<h4>Helsinki, Finland</h4>
</div>
</footer>
</div>
</body>
</html>