Commit 525da9ef authored by Ethan Rublee's avatar Ethan Rublee

working on cleaning up the android port - trying to fix the distortion coefficients bug

parent 2f859a86
# The path to the NDK, requires crystax version r-4 for now, due to support # The path to the NDK, requires crystax version r-4 for now, due to support
#for the standard library # for the standard library
#load environment from local make file # load environment from local make file
LOCAL_ENV_MK=local.env.mk LOCAL_ENV_MK=local.env.mk
ifneq "$(wildcard $(LOCAL_ENV_MK))" "" ifneq "$(wildcard $(LOCAL_ENV_MK))" ""
include $(LOCAL_ENV_MK) include $(LOCAL_ENV_MK)
...@@ -9,8 +9,7 @@ else ...@@ -9,8 +9,7 @@ else
$(shell cp sample.$(LOCAL_ENV_MK) $(LOCAL_ENV_MK)) $(shell cp sample.$(LOCAL_ENV_MK) $(LOCAL_ENV_MK))
$(info ERROR local environement not setup! try:) $(info ERROR local environement not setup! try:)
$(info gedit $(LOCAL_ENV_MK)) $(info gedit $(LOCAL_ENV_MK))
$(info Please setup the $(LOCAL_ENV_MK) - the default was just created') $(error Please setup the $(LOCAL_ENV_MK) - the default was just created')
include $(LOCAL_ENV_MK)
endif endif
ANDROID_NDK_BASE = $(ANDROID_NDK_ROOT) ANDROID_NDK_BASE = $(ANDROID_NDK_ROOT)
......
...@@ -69,7 +69,7 @@ bool runCalibration(vector<vector<Point2f> > imagePoints, ...@@ -69,7 +69,7 @@ bool runCalibration(vector<vector<Point2f> > imagePoints,
if (flags & CV_CALIB_FIX_ASPECT_RATIO) if (flags & CV_CALIB_FIX_ASPECT_RATIO)
cameraMatrix.at<double> (0, 0) = aspectRatio; cameraMatrix.at<double> (0, 0) = aspectRatio;
distCoeffs = Mat::zeros(5, 1, CV_64F); distCoeffs = Mat::zeros(4, 1, CV_64F);
vector<vector<Point3f> > objectPoints(1); vector<vector<Point3f> > objectPoints(1);
calcChessboardCorners(boardSize, squareSize, objectPoints[0]); calcChessboardCorners(boardSize, squareSize, objectPoints[0]);
......
#!/bin/sh
#this generates an ant based cli build of the android-jni project
android update project --name android-opencv \
--path .
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment