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

add header files explicitly so "gradlew assemble" could finish #218

Merged
merged 1 commit into from
Jun 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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