Skip to content

Commit

Permalink
renamed package, removed c++ library
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltroger committed Dec 2, 2016
1 parent 3f3daed commit f83c343
Show file tree
Hide file tree
Showing 149 changed files with 36 additions and 28 deletions.
3 changes: 3 additions & 0 deletions .idea/libraries/appcompat_v7_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/design_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/recyclerview_v7_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/support_compat_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/support_core_ui_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/support_core_utils_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/support_fragment_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/libraries/support_media_compat_25_0_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/build.gradle
Expand Up @@ -5,7 +5,7 @@ android {
buildToolsVersion "25.0.1"

defaultConfig {
applicationId "be.pxl.troger.shapedetection"
applicationId "com.michaeltroger.shapedetection"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
Expand Down
@@ -1,4 +1,4 @@
package be.pxl.troger.ar;
package com.michaeltroger.shapedetection;

import android.app.Application;
import android.test.ApplicationTestCase;
Expand Down
14 changes: 2 additions & 12 deletions app/src/main/AndroidManifest.xml
@@ -1,21 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="be.pxl.troger.ar">

package="com.michaeltroger.shapedetection">
<uses-permission android:name="android.permission.CAMERA"/>

<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>


<application
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

<activity android:name=".MainActivity"
<activity android:name="com.michaeltroger.shapedetection.MainActivity"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="keyboardHidden|orientation">
Expand All @@ -25,14 +20,9 @@
</intent-filter>
</activity>
</application>

<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />




</manifest>
@@ -1,4 +1,4 @@
package be.pxl.troger.ar;
package com.michaeltroger.shapedetection;

import org.opencv.android.BaseLoaderCallback;
import org.opencv.android.CameraBridgeViewBase.CvCameraViewFrame;
Expand Down Expand Up @@ -31,14 +31,8 @@
import java.util.HashMap;
import java.util.List;

import be.pxl.troger.ar.tools.ImgprocDatabase;
import be.pxl.troger.ar.views.OverlayView;

import static org.opencv.imgcodecs.Imgcodecs.imread;
import static org.opencv.imgproc.Imgproc.Canny;
import static org.opencv.imgproc.Imgproc.contourArea;
import static org.opencv.imgproc.Imgproc.cvtColor;
import static org.opencv.imgproc.Imgproc.rectangle;
import com.michaeltroger.shapedetection.tools.ImgprocDatabase;
import com.michaeltroger.shapedetection.views.OverlayView;

/**
* the main activity - entry to the application
Expand Down
@@ -1,4 +1,4 @@
package be.pxl.troger.ar.tools;
package com.michaeltroger.shapedetection.tools;

import android.util.Log;

Expand Down
@@ -1,4 +1,4 @@
package be.pxl.troger.ar.views;
package com.michaeltroger.shapedetection.views;


import android.content.Context;
Expand All @@ -12,7 +12,7 @@
import android.util.Log;
import android.view.View;

import be.pxl.troger.ar.R;
import com.michaeltroger.shapedetection.R;

/**
* The overlay view is responsible for displaying
Expand Down

0 comments on commit f83c343

Please sign in to comment.