Skip to content

Commit 98bab82

Browse files
authored
Merge pull request #17 from ichiro-its/add-documentation
Add First Update
2 parents 75753e4 + c84025f commit 98bab82

File tree

15 files changed

+45
-94
lines changed

15 files changed

+45
-94
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build and Test
2+
on:
3+
pull_request:
4+
branches: [ master ]
5+
push:
6+
branches: [ master ]
7+
jobs:
8+
build-and-test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checking out
12+
uses: actions/[email protected]
13+
- name: Building and testing
14+
uses: ichiro-its/[email protected]
15+
with:
16+
ros2-distro: foxy
17+
apt-packages: libopencv-dev
18+
external-repos: ichiro-its/shisen_interfaces#v0.1.0

.github/workflows/ros2-ci.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
.*
22

3-
!.git*
3+
!.git*
4+
5+
build
6+
install
7+
log

CHANGELOG.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ find_package(shisen_interfaces REQUIRED)
2222

2323
add_library(${PROJECT_NAME}
2424
"src/${PROJECT_NAME}/camera.cpp"
25-
"src/${PROJECT_NAME}/viewer.cpp"
26-
)
25+
"src/${PROJECT_NAME}/viewer.cpp")
2726

2827
target_include_directories(${PROJECT_NAME} PUBLIC
2928
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
@@ -32,8 +31,7 @@ target_include_directories(${PROJECT_NAME} PUBLIC
3231
ament_target_dependencies(${PROJECT_NAME}
3332
OpenCV
3433
rclcpp
35-
shisen_interfaces
36-
)
34+
shisen_interfaces)
3735

3836
install(DIRECTORY "include" DESTINATION ".")
3937

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Any contribution that you make to this repository will
22
be under the MIT license, as dictated by that
3-
[license](https://opensource.org/licenses/MIT).
3+
[license](https://opensource.org/licenses/MIT).

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2021 Ichiro ITS
3+
Copyright (c) 2020-2021 ICHIRO ITS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
# Shisen
22

3-
**Shisen** is a tools to capture image from a camera and modify camera related settings.
3+
[![latest version](https://img.shields.io/github/v/release/ichiro-its/shisen)](https://github.com/ichiro-its/shisen/releases/)
4+
[![milestone](https://img.shields.io/github/milestones/progress/ichiro-its/shisen/1?label=milestone)](https://github.com/ichiro-its/shisen/milestone/1)
5+
[![license](https://img.shields.io/github/license/ichiro-its/shisen)](./LICENSE)
6+
[![test status](https://img.shields.io/github/workflow/status/ichiro-its/shisen/Build%20and%20Test?label=test)](https://github.com/ichiro-its/shisen/actions)
7+
8+
This package provides a camera tools library for [ROS 2](https://docs.ros.org/en/foxy/index.html) projects.
9+
10+
## License
11+
12+
This project is maintained by [ICHIRO ITS](https://github.com/ichiro-its) and licensed under the [MIT License](./LICENSE).

include/shisen/camera.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2021 Ichiro ITS
1+
// Copyright 2020-2021 ICHIRO ITS
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

include/shisen/viewer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2021 Ichiro ITS
1+
// Copyright 2020-2021 ICHIRO ITS
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)