Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
add header files explicitly so "gradlew assemble" could finish succes…
Browse files Browse the repository at this point in the history
…sfully
  • Loading branch information
ivankolev committed Jun 12, 2017
1 parent fa9c178 commit b4066f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eyes-two/src/main/jni/imageutils/blur.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
// to process a single image is ~5 milliseconds.

#include <math.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "blur.h"
#include "utils.h"

Expand Down
1 change: 1 addition & 0 deletions eyes-two/src/main/jni/imageutils/similar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
//
// For performance consideration, 480x480 of central area of
// a given image is used for signature computation.
#include <string.h>

#include "similar.h"
#include "utils.h"
Expand Down

0 comments on commit b4066f1

Please sign in to comment.