AnimalRating/app/src/main/res/layout/activity_main.xml

40 lines
1.4 KiB
XML

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.camera.view.PreviewView
android:id="@+id/cameraPreview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.example.animalrating.ui.SilhouetteOverlay
android:id="@+id/silhouetteOverlay"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- ImageView to display the saved mask (Green) -->
<ImageView
android:id="@+id/savedMaskOverlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:elevation="5dp"/>
<!-- ImageView to display the segmentation mask (Live) -->
<ImageView
android:id="@+id/segmentationOverlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:alpha="0.9"
android:elevation="10dp"/>
<Button
android:id="@+id/btnSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save"
android:layout_gravity="bottom|center_horizontal"
android:layout_marginBottom="32dp"/>
</FrameLayout>