Youngmin Baek 6 vuotta sitten
vanhempi
commit
6c809d4099
7 muutettua tiedostoa jossa 40 lisäystä ja 1 poistoa
  1. 19 0
      LICENSE
  2. 1 1
      README.md
  3. 5 0
      craft.py
  4. 5 0
      craft_utils.py
  5. BIN
      figures/craft_example.gif
  6. 5 0
      imgproc.py
  7. 5 0
      test.py

+ 19 - 0
LICENSE

@@ -0,0 +1,19 @@
+Copyright (c) 2019-present NAVER Corp.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

+ 1 - 1
README.md

@@ -13,7 +13,7 @@ PyTorch implementation for CRAFT text detector that effectively detect text area
 <img width="1000" alt="teaser" src="./figures/craft_example.gif">
 
 ## Updates
-**4 Jun, 2019**: Initial update
+**13 Jun, 2019**: Initial update
 
 
 ## Getting started

+ 5 - 0
craft.py

@@ -1,3 +1,8 @@
+"""  
+Copyright (c) 2019-present NAVER Corp.
+MIT License
+"""
+
 # -*- coding: utf-8 -*-
 import torch
 import torch.nn as nn

+ 5 - 0
craft_utils.py

@@ -1,3 +1,8 @@
+"""  
+Copyright (c) 2019-present NAVER Corp.
+MIT License
+"""
+
 # -*- coding: utf-8 -*-
 import numpy as np
 import cv2

BIN
figures/craft_example.gif


+ 5 - 0
imgproc.py

@@ -1,3 +1,8 @@
+"""  
+Copyright (c) 2019-present NAVER Corp.
+MIT License
+"""
+
 # -*- coding: utf-8 -*-
 import numpy as np
 from skimage import io

+ 5 - 0
test.py

@@ -1,3 +1,8 @@
+"""  
+Copyright (c) 2019-present NAVER Corp.
+MIT License
+"""
+
 # -*- coding: utf-8 -*-
 import sys
 import os