Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
b9432775
Commit
b9432775
authored
Feb 04, 2013
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tutorial-2 removed as dublicate of tutorial-1 and image manipulations sample.
parent
33502c86
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
106 deletions
+0
-106
CMakeLists.txt
samples/android/CMakeLists.txt
+0
-1
.classpath
samples/android/tutorial-2-opencvcamera/.classpath
+0
-8
.project
samples/android/tutorial-2-opencvcamera/.project
+0
-33
org.eclipse.jdt.core.prefs
...orial-2-opencvcamera/.settings/org.eclipse.jdt.core.prefs
+0
-4
AndroidManifest.xml
samples/android/tutorial-2-opencvcamera/AndroidManifest.xml
+0
-38
CMakeLists.txt
samples/android/tutorial-2-opencvcamera/CMakeLists.txt
+0
-7
icon.png
...les/android/tutorial-2-opencvcamera/res/drawable/icon.png
+0
-0
tutorial2_surface_view.xml
...rial-2-opencvcamera/res/layout/tutorial2_surface_view.xml
+0
-11
strings.xml
...es/android/tutorial-2-opencvcamera/res/values/strings.xml
+0
-4
No files found.
samples/android/CMakeLists.txt
View file @
b9432775
...
...
@@ -12,7 +12,6 @@ add_subdirectory(image-manipulations)
add_subdirectory
(
color-blob-detection
)
add_subdirectory
(
tutorial-1-camerapreview
)
add_subdirectory
(
tutorial-2-opencvcamera
)
add_subdirectory
(
tutorial-3-native
)
add_subdirectory
(
tutorial-4-mixed
)
add_subdirectory
(
tutorial-5-cameracontrol
)
...
...
samples/android/tutorial-2-opencvcamera/.classpath
deleted
100644 → 0
View file @
33502c86
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry
kind=
"con"
path=
"com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"
/>
<classpathentry
kind=
"con"
path=
"com.android.ide.eclipse.adt.LIBRARIES"
/>
<classpathentry
kind=
"src"
path=
"src"
/>
<classpathentry
kind=
"src"
path=
"gen"
/>
<classpathentry
kind=
"output"
path=
"bin/classes"
/>
</classpath>
samples/android/tutorial-2-opencvcamera/.project
deleted
100644 → 0
View file @
33502c86
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>
OpenCV Tutorial 2 - Use OpenCV Camera
</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>
com.android.ide.eclipse.adt.ResourceManagerBuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
com.android.ide.eclipse.adt.PreCompilerBuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
org.eclipse.jdt.core.javabuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
com.android.ide.eclipse.adt.ApkBuilder
</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>
com.android.ide.eclipse.adt.AndroidNature
</nature>
<nature>
org.eclipse.jdt.core.javanature
</nature>
</natures>
</projectDescription>
samples/android/tutorial-2-opencvcamera/.settings/org.eclipse.jdt.core.prefs
deleted
100644 → 0
View file @
33502c86
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.source=1.6
samples/android/tutorial-2-opencvcamera/AndroidManifest.xml
deleted
100644 → 0
View file @
33502c86
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.opencv.samples.tutorial2"
android:versionCode=
"21"
android:versionName=
"2.1"
>
<application
android:label=
"@string/app_name"
android:icon=
"@drawable/icon"
android:theme=
"@android:style/Theme.NoTitleBar.Fullscreen"
>
<activity
android:name=
"Sample2NativeCamera"
android:label=
"@string/app_name"
android:screenOrientation=
"landscape"
android:configChanges=
"keyboardHidden|orientation"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
</application>
<supports-screens
android:resizeable=
"true"
android:smallScreens=
"true"
android:normalScreens=
"true"
android:largeScreens=
"true"
android:anyDensity=
"true"
/>
<uses-sdk
android:minSdkVersion=
"8"
/>
<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"
/>
</manifest>
samples/android/tutorial-2-opencvcamera/CMakeLists.txt
deleted
100644 → 0
View file @
33502c86
set
(
sample example-tutorial-2-opencvcamera
)
add_android_project
(
${
sample
}
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
LIBRARY_DEPS
${
OpenCV_BINARY_DIR
}
SDK_TARGET 11
${
ANDROID_SDK_TARGET
}
)
if
(
TARGET
${
sample
}
)
add_dependencies
(
opencv_android_examples
${
sample
}
)
endif
()
samples/android/tutorial-2-opencvcamera/res/drawable/icon.png
deleted
100644 → 0
View file @
33502c86
1.95 KB
samples/android/tutorial-2-opencvcamera/res/layout/tutorial2_surface_view.xml
deleted
100644 → 0
View file @
33502c86
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
<org.opencv.android.NativeCameraView
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
android:id=
"@+id/tutorial2_activity_surface_view"
/>
</LinearLayout>
samples/android/tutorial-2-opencvcamera/res/values/strings.xml
deleted
100644 → 0
View file @
33502c86
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string
name=
"app_name"
>
OCV T2 Use OpenCV Camera
</string>
</resources>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment