Skip to content

Commit 9fb743c

Browse files
committed
fix result image
1 parent f53934b commit 9fb743c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+11078
-3
lines changed
Binary file not shown.
Binary file not shown.
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
* All
3+
* ISpring
4+
*
5+
* Created by Kimbom on 2017. 05. 30...
6+
* Copyright 2017 Sogang CVIP lab. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_05_1E_ALL_H_INCLUDED)
10+
#define ISPRING_7E1_05_1E_ALL_H_INCLUDED
11+
#include"Basic.h"
12+
#include"Compression.h"
13+
#include "Console.h"
14+
#include "File.h"
15+
#include "Time.h"
16+
#include"Verify.h"
17+
#include"System.h"
18+
#include"Web.h"
19+
#ifndef NO_OPENCV
20+
#ifdef ISPRING_WINDOWS_VISUAL_STUDIO
21+
#include "CV.h"
22+
#endif
23+
#endif
24+
#endif
25+
26+
/*!
27+
@mainpage ISpring
28+
<div style="width:1200px;margin:auto;background-color:#fdf6e3">
29+
<p>&nbsp;</p>
30+
<h1 style="padding:0px;margin:0px">integrated cross platform c++ library</h1>
31+
<p>&nbsp;</p>
32+
<h2 style="padding:0px;margin:0px">Support OS</h2>
33+
<img src="https://i.imgur.com/YSyh3Iy.png" title="Windows8" width="48" align="left">
34+
<img src="https://i.imgur.com/WUmFQlx.png" width="48" align="left">
35+
<br/><p>&nbsp;</p><br/>
36+
<h2 style="padding:0px;margin:0px">Support Compiler</h2>
37+
<img src="https://i.imgur.com/d67ToiK.png" width="48" align="left">
38+
<img src="https://i.imgur.com/O5bye0l.png" width="48" align="left">
39+
<img src="https://i.imgur.com/XFJ2SfL.png" width="48" align="left">
40+
<img src="https://i.imgur.com/ecAywxd.png" width="48" align="left">
41+
<img src="https://i.imgur.com/zhdD9BY.png" width="48" align="left">
42+
<br/><p>&nbsp;</p><br/>
43+
<h2 style="padding:0px;margin:0px">Require library</h2>
44+
<img src="https://i.imgur.com/JVmb02s.png" width="48" align="left">
45+
<br/><p>&nbsp;</p><br/>
46+
<h2 style="padding:0px;margin:0px">Modules</h2>
47+
<img src="https://i.imgur.com/eqCQg9d.png" width="48" align="left">
48+
<br/>Compression<br/><br/>
49+
<img src="https://i.imgur.com/jAMQ3Tl.png" width="48" align="left">
50+
<br/>Console<br/><br/>
51+
<img src="https://i.imgur.com/D0fc2LA.png" width="48" align="left">
52+
<br/>OpenCV Ex<br/><br/>
53+
<img src="https://i.imgur.com/rtqFAMP.png" width="48" align="left">
54+
<br/>File<br/><br/>
55+
<img src="https://i.imgur.com/7qKDdyc.png" width="48" align="left">
56+
<br/>Web<br/><br/>
57+
<img src="https://i.imgur.com/nQZXBru.png" width="48" align="left">
58+
<br/>System<br/><br/>
59+
<img src="https://i.imgur.com/gKkPj3e.png" width="48" align="left">
60+
<br/>Time<br/><br/>
61+
<img src="https://i.imgur.com/IPdp7eR.png" width="48" align="left">
62+
<br/>Verify<br/><br/>
63+
64+
<br/><p>&nbsp;</p><br/>
65+
<h2 style="padding:0px;margin:0px">How to use</h2>
66+
이 라이브러리는 단순 헤더 파일 입니다.<br/>
67+
[install_ispring.exe](https://www.dropbox.com/s/hcu291ubxtj1n5y/install_ispring.exe?dl=1)
68+
위 파일을 다운받고 실행하면 ispring이 해당 폴더에 설치됩니다.<br/>
69+
라이브러리의 버전이 변경되도 다시 install_ispring.exe 를 실행하면 라이브러리를 업그레이드 해줍니다.
70+
<br/>
71+
72+
73+
</div>
74+
*/
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* Basic.h
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 10. 3...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_A_3_BASIC_HPP_INCLUDED)
10+
#define ISPRING_7E1_A_3_BASIC_HPP_INCLUDED
11+
#include<iostream>
12+
#include<vector>
13+
#include<string>
14+
#include"modules/Basic/String.h"
15+
#endif //ISPRING_7E1_A_3_BASIC_HPP_INCLUDED
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* CV.h
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 9. 21...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_9_15_CV_HPP_INCLUDED)
10+
#define ISPRING_7E1_9_15_CV_HPP_INCLUDED
11+
#include"modules/CV/Image.h"
12+
#include"modules/CV/Geometry.h"
13+
#include"modules/CV/Eval.h"
14+
#endif //ISPRING_7E1_9_15_CV_HPP_INCLUDED
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* Compression.h
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 9. 21...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_9_15_COMPRESSION_HPP_INCLUDED)
10+
#define ISPRING_7E1_9_15_COMPRESSION_HPP_INCLUDED
11+
#include"modules/Compression/Zip.h"
12+
13+
14+
#endif //ISPRING_7E1_9_15_COMPRESSION_HPP_INCLUDED
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Console.hpp
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 9. 21...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_9_15_CONSOLE_HPP_INCLUDED)
10+
#define ISPRING_7E1_9_15_CONSOLE_HPP_INCLUDED
11+
#include"modules/Console/xout.h"
12+
13+
#endif //ISPRING_7E1_9_15_CONSOLE_HPP_INCLUDED
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* File.h
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 9. 21...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_9_15_FILE_HPP_INCLUDED)
10+
#define ISPRING_7E1_9_15_FILE_HPP_INCLUDED
11+
#include"modules/File/FileManager.h"
12+
#endif //ISPRING_7E1_9_15_FILE_HPP_INCLUDED
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* System.h
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 9. 21...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_9_15_SYSTEM_HPP_INCLUDED)
10+
#define ISPRING_7E1_9_15_SYSTEM_HPP_INCLUDED
11+
#include"modules/System/OS.h"
12+
#endif //ISPRING_7E1_9_15_SYSTEM_HPP_INCLUDED
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* Time.h
3+
* ispring
4+
*
5+
* Created by kimbom on 2017. 9. 21...
6+
* Copyright 2017 kimbom. All rights reserved.
7+
*
8+
*/
9+
#if !defined(ISPRING_7E1_9_15_TIME_HPP_INCLUDED)
10+
#define ISPRING_7E1_9_15_TIME_HPP_INCLUDED
11+
#include"modules/Time/Timer.h"
12+
#endif //ISPRING_7E1_9_15_TIME_HPP_INCLUDED

0 commit comments

Comments
 (0)