Skip to content

Commit bb38fb2

Browse files
committed
Added TP12 - Neural Networks
1 parent b13507c commit bb38fb2

File tree

5,004 files changed

+5207
-0
lines changed

Some content is hidden

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

5,004 files changed

+5207
-0
lines changed

src/TP12/CMakeLists.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
CMAKE_MINIMUM_REQUIRED(VERSION 2.4 FATAL_ERROR)
2+
PROJECT(TP12)
3+
4+
# Add OpenCV
5+
FIND_PACKAGE( OpenCV REQUIRED )
6+
7+
# Add definitions, compiler switches, etc.
8+
SET(CMAKE_BUILD_TYPE Debug) # Debug
9+
ADD_DEFINITIONS(-O0) # Debug
10+
# ADD_DEFINITIONS(-O2) # Release
11+
12+
# Show all warnings when compiling
13+
ADD_DEFINITIONS(-Wall)
14+
15+
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
16+
17+
# Add executable
18+
ADD_EXECUTABLE( tp12 src/tp12.cpp )
19+
TARGET_LINK_LIBRARIES(tp12 ${OpenCV_LIBS})

src/TP12/build/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

src/TP12/data/1.png

288 Bytes

src/TP12/data/10.png

273 Bytes

src/TP12/data/100.png

284 Bytes

src/TP12/data/1000.png

174 Bytes

src/TP12/data/1001.png

263 Bytes

src/TP12/data/1002.png

260 Bytes

src/TP12/data/1003.png

300 Bytes

src/TP12/data/1004.png

279 Bytes

0 commit comments

Comments
 (0)