Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix inverted mask #19

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# mask-ppm
# mask-ppm

Open terminal and switch to the project directory where the script is located.

Then, enter the following command
```bash
bash mask.sh image.ppm mask.pbm > output.ppm
```

After executing the command the output file will be modifed to apply the filter.
2 changes: 1 addition & 1 deletion mask.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ do
read -r -a iline <&4
for((j=0;j<msizex;++j))
do
if [ "${values[j]}" = "0" ]
if [ "${values[j]}" = "1" ]
then
for((jj=0;jj<30;++jj))
do
Expand Down
Loading