-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement application for running the test on ImageNet dataset (#163)
Closes #162
- Loading branch information
Showing
9 changed files
with
51,196 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.vscode | ||
build | ||
3rdparty/tensorflow | ||
app/AccuracyImgNet/imgs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
add_executable(ACCImgNet accimgnet.cpp) | ||
|
||
find_package( OpenCV REQUIRED PATHS "${CMAKE_SOURCE_DIR}/3rdparty/opencv/build" ) | ||
include_directories( ${OpenCV_INCLUDE_DIRS} ) | ||
target_link_libraries( ACCImgNet ${OpenCV_LIBS} ) | ||
target_link_libraries( ACCImgNet TBB::tbb) | ||
target_link_libraries( ACCImgNet layers_lib) | ||
target_link_libraries( ACCImgNet gtest_main) |
Oops, something went wrong.