diff --git a/ui/src/app/app-image-labeling/app-image-labeling.component.css b/ui/src/app/app-image-labeling/app-image-labeling.component.css
deleted file mode 100644
index e9af73709c..0000000000
--- a/ui/src/app/app-image-labeling/app-image-labeling.component.css
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-.page-container-padding {
- width:100%;
-}
-
-.page-container-padding-inner {
- padding: 10px;
-}
\ No newline at end of file
diff --git a/ui/src/app/app-image-labeling/app-image-labeling.component.html b/ui/src/app/app-image-labeling/app-image-labeling.component.html
deleted file mode 100644
index fb6c509eff..0000000000
--- a/ui/src/app/app-image-labeling/app-image-labeling.component.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
- Select data lake measurement
-
-
- {{measure.measureName}}
-
-
-
-
-
-
-
-
-
- 0" [imagesRoutes]="imagesRoutes">
-
-
\ No newline at end of file
diff --git a/ui/src/app/app-image-labeling/app-image-labeling.component.ts b/ui/src/app/app-image-labeling/app-image-labeling.component.ts
deleted file mode 100644
index 07b82172d5..0000000000
--- a/ui/src/app/app-image-labeling/app-image-labeling.component.ts
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import { Component, EventEmitter, OnInit, Output } from '@angular/core';
-import { DataLakeMeasure, EventPropertyUnion, EventSchema, SpQueryResult, DateRange } from '@streampipes/platform-services';
-
-@Component({
- selector: 'app-image-labeling',
- templateUrl: './app-image-labeling.component.html',
- styleUrls: ['./app-image-labeling.component.css']
-})
-export class AppImageLabelingComponent implements OnInit {
-
- public imagesRoutes = [];
-
- dataLakeMeasures: DataLakeMeasure[] = [];
- selectedMeasure: DataLakeMeasure;
-
- imageProperty: string;
-
- @Output() appOpened = new EventEmitter