Skip to content

Commit e3edcdd

Browse files
First version of the website on GitHub pages
1 parent 3b1a1c1 commit e3edcdd

29 files changed

+332
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
4+
Gemfile.lock

404.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
<style type="text/css" media="screen">
6+
.container {
7+
margin: 10px auto;
8+
max-width: 600px;
9+
text-align: center;
10+
}
11+
h1 {
12+
margin: 30px 0;
13+
font-size: 4em;
14+
line-height: 1;
15+
letter-spacing: -1px;
16+
}
17+
</style>
18+
19+
<div class="container">
20+
<h1>404</h1>
21+
22+
<p><strong>Page not found :(</strong></p>
23+
<p>The requested page could not be found.</p>
24+
</div>

Gemfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
# gem "jekyll", "~> 3.8.5"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
end
24+
25+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
30+

_config.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Point Cloud Library
17+
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing.
20+
baseurl: "" # the subpath of your site, e.g. /blog
21+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
22+
twitter_username: pointclouds
23+
github_username: PointCloudLibrary
24+
discord: https://discord.gg/JFFMAXS
25+
26+
# Build settings
27+
markdown: kramdown
28+
theme: minima
29+
plugins:
30+
- jekyll-feed
31+
32+
33+
api_base_url: https://pointcloudlibrary.github.io/documentation
34+
tutorials_base_url: https://pcl-tutorials.readthedocs.io/
35+
advanced_base_url: https://pcl-advanced.readthedocs.io/
36+
37+
navigation:
38+
- title: API Reference
39+
url: https://pointcloudlibrary.github.io/documentation
40+
- title: Tutorials
41+
url: https://pcl-tutorials.readthedocs.io/
42+
- title: Advanced
43+
url: https://pcl-advanced.readthedocs.io/
44+
45+
# Exclude from processing.
46+
# The following items will not be processed, by default. Create a custom list
47+
# to override the default setting.
48+
# exclude:
49+
# - Gemfile
50+
# - Gemfile.lock
51+
# - node_modules
52+
# - vendor/bundle/
53+
# - vendor/cache/
54+
# - vendor/gems/
55+
# - vendor/ruby/

_includes/header.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<header class="site-header">
2+
3+
<div class="wrapper">
4+
{%- assign default_paths = site.pages | map: "path" -%}
5+
{%- assign page_paths = site.header_pages | default: default_paths -%}
6+
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
7+
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
8+
9+
{%- if titles_size > 0 -%}
10+
<nav class="site-nav">
11+
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
12+
<label for="nav-trigger">
13+
<span class="menu-icon">
14+
<svg viewBox="0 0 18 15" width="18px" height="15px">
15+
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
16+
</svg>
17+
</span>
18+
</label>
19+
20+
<div class="trigger">
21+
{%- for my_page in site.navigation -%}
22+
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
23+
{%- endfor -%}
24+
{%- for path in page_paths -%}
25+
{%- assign my_page = site.pages | where: "path", path | first -%}
26+
{%- if my_page.title -%}
27+
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
28+
{%- endif -%}
29+
{%- endfor -%}
30+
</div>
31+
</nav>
32+
{%- endif -%}
33+
</div>
34+
</header>

_includes/social.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<ul class="social-media-list">
2+
{%- if site.dribbble_username -%}<li><a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg> <span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
3+
{%- if site.facebook_username -%}<li><a href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg> <span class="username">{{ site.facebook_username| escape }}</span></a></li>{%- endif -%}
4+
{%- if site.flickr_username -%}<li><a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg> <span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
5+
{%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
6+
{%- if site.instagram_username -%}<li><a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg> <span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
7+
{%- if site.linkedin_username -%}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg> <span class="username">{{ site.linkedin_username| escape }}</span></a></li>{%- endif -%}
8+
{%- if site.pinterest_username -%}<li><a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg> <span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
9+
{%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li><a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg> <span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
10+
{%- if site.twitter_username -%}<li><a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg> <span class="username">{{ site.twitter_username| escape }}</span></a></li>{%- endif -%}
11+
{%- if site.youtube_username -%}<li><a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg> <span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
12+
{%- if site.googleplus_username -%}<li><a href="https://plus.google.com/{{ site.googleplus_username| escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg> <span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
13+
{%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
14+
{%- if site.discord -%}<li><a href="{{ site.discord }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#discord' | relative_url }}"></use></svg> <span>Discord</span></a></li>{%- endif -%}
15+
</ul>

about.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
What is PCL?
8+
============
9+
10+
The Point Cloud Library (or PCL) is a large scale, open project [[1]](#open) for 2D/3D
11+
image and point cloud processing. The PCL framework contains numerous
12+
state-of-the art algorithms including filtering, feature estimation, surface
13+
reconstruction, registration, model fitting and segmentation. These algorithms
14+
can be used, for example, to filter outliers from noisy data, stitch 3D point
15+
clouds together, segment relevant parts of a scene, extract keypoints and
16+
compute descriptors to recognize objects in the world based on their geometric
17+
appearance, and create surfaces from point clouds and visualize them -- to name
18+
a few.
19+
20+
PCL is released under the terms of the [3-clause BSD license](https://en.wikipedia.org/wiki/BSD_licenses#3-clause_license_.28.22Revised_BSD_License.22.2C_.22New_BSD_License.22.2C_or_.22Modified_BSD_License.22.29) and is open source software. **It is free for commercial and research use.** PCL is **cross-platform**,
21+
and has been successfully compiled and deployed on Linux, MacOS, Windows and
22+
Android. To simplify development, PCL is split into a series of smaller
23+
code libraries, that can be compiled separately. This modularity is important
24+
for distributing PCL on platforms with reduced computational or size
25+
constraints (for more information about each module see the [documentation]({{ site.api_base_url }})
26+
page). Another way to think about PCL is as a graph of code libraries,
27+
similar to the [Boost](http://www.boost.org/) set of C++ libraries. Here's an example:
28+
29+
![dependency-graph](/assets/images/about/pcl_dependency_graph2.png)
30+
31+
32+
What is a Point Cloud?
33+
======================
34+
35+
A point cloud is a data structure used to represent a collection of
36+
multi-dimensional points and is commonly used to represent three-dimensional
37+
data. In a 3D point cloud, the points usually represent the X, Y, and Z
38+
geometric coordinates of an underlying sampled surface. When color information
39+
is present (see the figures below), the point cloud becomes 4D.
40+
41+
![point_cloud_example](/assets/images/about/point_cloud_example.png)
42+
43+
44+
Point clouds can be acquired from hardware sensors such as stereo cameras, 3D scanners, or time-of-flight cameras, or generated from a computer program synthetically. PCL supports natively the OpenNI 3D interfaces, and can thus acquire and process data from devices such as the PrimeSensor 3D cameras, the Microsoft Kinect or the [Asus
45+
XTionPro](https://www.asus.com/3D-Sensor/Xtion_PRO/).
46+
47+
For more information about point clouds and 3D processing please visit our [documentation]({{ site.api_base_url }}) page.
48+
49+
References
50+
==========
51+
52+
<a name="open"><abbr title="PCL">[1]</abbr></a>
53+
For more information, including a scientific citation (more to be added soon), please see:
54+
55+
{% raw %}
56+
@InProceedings{Rusu_ICRA2011_PCL,
57+
author = {Radu Bogdan Rusu and Steve Cousins},
58+
title = {{3D is here: Point Cloud Library (PCL)}},
59+
booktitle = {{IEEE International Conference on Robotics and Automation (ICRA)}},
60+
month = {May 9-13},
61+
year = {2011},
62+
address = {Shanghai, China}
63+
}
64+
{% endraw %}
65+
66+
[Download PDF here](/assets/pdf/pcl_icra2011.pdf)
176 KB
Loading
129 KB
Loading

assets/images/advanced.png

23.3 KB
Loading

assets/images/api_example.png

9.28 KB
Loading

assets/images/logo.png

14 KB
Loading
105 KB
Loading
50.3 KB
Loading

assets/images/overview/io_small.jpg

8.42 KB
Loading
29.1 KB
Loading
109 KB
Loading
31.2 KB
Loading
60.4 KB
Loading
62.6 KB
Loading
Loading
40.3 KB
Loading
37.4 KB
Loading
37.6 KB
Loading

assets/images/tutorials.png

31.4 KB
Loading

0 commit comments

Comments
 (0)