Peter M. Groen
/
openbr
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
6f2dd0bf0ad9d370a7ffc87af8368ae4b38310fc
Authored by
Scott Klum
2015-04-10 13:15:26 -0400
1 parent
ecd876e9
Remove mask if cropfrommask fails
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
openbr/plugins/imgproc/cropfrommask.cpp
openbr/plugins/imgproc/cropfrommask.cpp
View file @
6f2dd0b
...
...
@@ -64,6 +64,7 @@ private:
64
64
65
65
dst.m() = Mat(src.m(), Rect(top, left, bottom - top + 1, right - left + 1));
66
66
} else {
67
+ dst.file.remove("Mask");
67
68
dst.file.fte = true;
68
69
}
69
70
}
...
...