Skip to content

Commit

Permalink
idc
Browse files Browse the repository at this point in the history
  • Loading branch information
acodexm committed May 28, 2019
1 parent 318e5a6 commit 702461b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/main/java/study/acodexm/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ private Runnable processPicture(final PictureMode pictureMode) {
String[] args = {pictureMode.toString()};
NativePanorama.processPanorama(tempObjAddress, result.getNativeObjAddr(), args);
post(LOG.r("processPanorama", (System.currentTimeMillis() - t) + "", (System.currentTimeMillis() - time)));

t = System.currentTimeMillis();
//save to external storage
boolean isSaved = false;
if (!result.empty())
Expand Down
1 change: 1 addition & 0 deletions android/src/main/jni/ImgStitcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ int stitchImg(vector<Mat> &imagesArg, Mat &result, vector<string> params) {
} else if (mode == "multithreaded") {
ORB_GRID_SIZE = Size(4, 2);
ORB_FEATURES_N = 1000;
warp_type = "cylindrical";
} else if (mode == "part") {
ORB_GRID_SIZE = Size(3, 1);
ORB_FEATURES_N = 1000;
Expand Down

0 comments on commit 702461b

Please sign in to comment.