Skip to content

Commit ca7eea7

Browse files
authored
Merge pull request #18 from ekumenlabs/susanachl/fix_docs
Addressing comments from the open source doc
2 parents 8c74a3c + 35c3e5b commit ca7eea7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ This projects adopts a [feature branch workflow](https://about.gitlab.com/topics
126126
1. **Fork the [dicom_to_ros repository](https://github.com/Ekumen-OS/dicom_to_ros/) to your GitHub account**.
127127
1. **Clone the repository fork locally**. You will need `git`.
128128
```bash
129-
git clone --recursive git@github.com:<your_username>/beluga.git
129+
git clone --recursive git@github.com:<your_username>/dicom_to_ros.git
130130
```
131131
```
132132
1. **Create a new branch where your work will go**.
133133
```bash
134134
git checkout -b <your_username>/fix-issue-12345 main
135135
```
136-
1. **Work on your contribution**. See [instructions](DEVELOPING.md) on how to get started with Beluga development.
136+
1. **Work on your contribution**. See [instructions](README.md) on how to get started with `dicom_to_ros`.
137137
1. **Test your changes**. For bug fixes, make sure regression tests are included.
138138
1. **Document your changes as needed**. For new features, make sure added functionality is clearly documented.
139139
1. **Push the branch to your fork on GitHub**.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ The system routes data through 6 specialized nodes, launched via `dicom_nodes.la
104104
DICOM images often come in 12-bit or 16-bit integers with varying ranges.
105105
To make them compatible with standard Computer Vision tools (OpenCV/ROS), the imaging nodes perform Min-Max normalization to cast them to `mono8` (uint8):
106106

107-
$$Pixel_{new} = \frac{(Pixel_{raw} - Pixel_{min})}{Pixel_{max}} \times 255$$
107+
$$Pixel_{new} = \frac{(Pixel_{raw} - Pixel_{min})}{(Pixel_{max} - Pixel_{min})} \times 255$$
108108

109109
### Metadata and Data Flow
110110

0 commit comments

Comments
 (0)