Skip to content

Commit 03eaa9e

Browse files
authored
Merge pull request spmallick#274 from sunitanyk/master
Updated Mask-RCNN license info
2 parents 34fffe7 + 7b25c2c commit 03eaa9e

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

Mask-RCNN/LICENSE

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
By downloading, copying, installing or using the software you agree to this license. If you do not agree to this license, do not download, install, copy or use the software.
3+
4+
License Agreement (3-clause BSD License with Attribution)
5+
6+
Copyright (C) 2018-2019, BigVision LLC (LearnOpenCV.com), All Rights Reserved.
7+
8+
Redistribution and use in source and binary forms, with or without
9+
modification, are permitted provided that the following conditions
10+
are met:
11+
12+
1. Redistributions of source code must retain the above copyright
13+
notice, this list of conditions and the following disclaimer.
14+
15+
2. Redistributions in binary form must reproduce the above copyright
16+
notice, this list of conditions and the following disclaimer in
17+
the documentation and/or other materials provided with the
18+
distribution.
19+
20+
3. Neither the name of the copyright holder nor the names of its
21+
contributors may be used to endorse or promote products derived
22+
from this software without specific prior written permission.
23+
24+
4. Redistributions of any form whatsoever must retain the following
25+
acknowledgment: 'This product includes software developed by the
26+
"Big Vision LLC (LearnOpenCV.com)" (https://www.learnopencv.com).'
27+
28+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
34+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
35+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
36+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
37+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
38+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Mask-RCNN/mask_rcnn.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
// This code is written at BigVision LLC. It is based on the OpenCV project. It is subject to the license terms in the LICENSE file found in this distribution and at http://opencv.org/license.html
1+
// Copyright (C) 2018-2019, BigVision LLC (LearnOpenCV.com), All Rights Reserved.
2+
// Author : Sunita Nayak
3+
// Article : https://www.learnopencv.com/deep-learning-based-object-detection-and-instance-segmentation-using-mask-r-cnn-in-opencv-python-c/
4+
// License: BSD-3-Clause-Attribution (Please read the license file.)
25

36
// Usage example: ./mask_rcnn.out --video=run.mp4
47
// ./mask_rcnn.out --image=bird.jpg

Mask-RCNN/mask_rcnn.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Copyright (C) 2018-2019, BigVision LLC (LearnOpenCV.com), All Rights Reserved.
2+
# Author : Sunita Nayak
3+
# Article : https://www.learnopencv.com/deep-learning-based-object-detection-and-instance-segmentation-using-mask-r-cnn-in-opencv-python-c/
4+
# License: BSD-3-Clause-Attribution (Please read the license file.)
5+
# This work is based on OpenCV samples code (https://opencv.org/license.html)
6+
17
import cv2 as cv
28
import argparse
39
import numpy as np

0 commit comments

Comments
 (0)