|
|
@@ -34,28 +34,31 @@ public class MainActivity extends AppCompatActivity { |
|
|
|
ImageView inputImageView; |
|
|
|
ImageView outputImageView; |
|
|
|
ToggleButton toggleButton; |
|
|
|
int num=0; |
|
|
|
|
|
|
|
@Override |
|
|
|
protected void onCreate(Bundle savedInstanceState) { |
|
|
|
super.onCreate(savedInstanceState); |
|
|
|
setContentView(R.layout.activity_main); |
|
|
|
|
|
|
|
|
|
|
|
inputImageView = findViewById(R.id.inputImageView); |
|
|
|
outputImageView = findViewById(R.id.outputImageView); |
|
|
|
toggleButton = findViewById(R.id.toggleButton); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
protected void onResume() { |
|
|
|
super.onResume(); |
|
|
|
|
|
|
|
PermissionHandler permissionHandler = new PermissionHandler(this); |
|
|
|
permissionHandler.getPermissions(); |
|
|
|
//permissionHandler.getPermissions(); |
|
|
|
if (permissionHandler.hasPermissions()) { |
|
|
|
|
|
|
|
|
|
|
|
Intent serviceIntent = new Intent(this, DetectorService.class); |
|
|
|
bindService(serviceIntent, serviceConnection, Context.BIND_AUTO_CREATE); |
|
|
|
startService(serviceIntent); |
|
|
|
|
|
|
|
|
|
|
|
toggleButton.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
public void onClick(View v) { |
|
|
@@ -63,7 +66,6 @@ public class MainActivity extends AppCompatActivity { |
|
|
|
{ |
|
|
|
if (detectorService != null){ |
|
|
|
|
|
|
|
detectorService.videoDetector.debugProcessing(inputImageView, outputImageView); |
|
|
|
detectorService.videoDetector.startDetection(); |
|
|
|
|
|
|
|
detectorService.audioDetector.startDetection(); |
|
|
@@ -89,9 +91,11 @@ public class MainActivity extends AppCompatActivity { |
|
|
|
} |
|
|
|
}); |
|
|
|
}else{ |
|
|
|
Toast.makeText(getApplicationContext(),"Bitte Zugriffsrechte gewähren",Toast.LENGTH_SHORT).show(); |
|
|
|
Toast.makeText(this,"Bitte Rechte geben", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) { |
|
|
|
getMenuInflater().inflate(R.menu.options_menu, menu); |
|
|
|
return true; |
|
|
@@ -115,6 +119,11 @@ public class MainActivity extends AppCompatActivity { |
|
|
|
popUpClass.showPopupWindow(inputImageView); |
|
|
|
popUpClass.Impressum(); |
|
|
|
return true; |
|
|
|
case R.id.Detection: |
|
|
|
popUpClass = new PopUpClass(MainActivity.this); |
|
|
|
popUpClass.showPopupWindow(inputImageView); |
|
|
|
popUpClass.DetectionTotal(num); |
|
|
|
return true; |
|
|
|
default: |
|
|
|
return super.onOptionsItemSelected(item); |
|
|
|
} |
|
|
@@ -125,15 +134,18 @@ public class MainActivity extends AppCompatActivity { |
|
|
|
public void onServiceConnected(ComponentName name, IBinder service) { |
|
|
|
DetectorService.ServiceBinder binder = (DetectorService.ServiceBinder) service; |
|
|
|
detectorService = binder.getBoundService(); |
|
|
|
detectorService.videoDetector.debugProcessing(null, outputImageView); //inputImageView |
|
|
|
|
|
|
|
detectorService.setOnDetectionListener(new DetectorService.OnDetectionListener() { |
|
|
|
@Override |
|
|
|
public void onDetection(@NonNull StringBuffer stringBuffer) { |
|
|
|
Log.d("onDetection", stringBuffer.toString()); //Für oli hier Textview einbauen |
|
|
|
num++; |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
@Override |
|
|
|
public void onServiceDisconnected(ComponentName name) {} |
|
|
|
public void onServiceDisconnected(ComponentName name) { |
|
|
|
} |
|
|
|
}; |
|
|
|
} |