Commit 0d6e2ac9 authored by Rohan  Kumar's avatar Rohan Kumar
Browse files

"changing around stuff"

parent 0b37ce57
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <exec.mainClass>object_detection.ObjectDetector</exec.mainClass>
    </properties>

    <dependencies>
@@ -35,11 +36,6 @@
            <artifactId>log4j-slf4j-impl</artifactId>
            <version>2.20.0</version>
        </dependency>
        <dependency>
            <groupId>org.tallison</groupId>
            <artifactId>jmatio</artifactId>
            <version>1.5</version>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
+0 −5
Original line number Diff line number Diff line
package object_detection;

import com.jmatio.io.*;

import java.io.IOException;

public class ObjectDetector {
@@ -21,9 +19,6 @@ public class ObjectDetector {
        3) Push new update to database if necessary
         */

        MatFileReader mf = new MatFileReader("./extractedPoints.mat");
        System.out.println(mf);

        // create objectset
        os = new ObjectSet();

target/classes/.idea/.gitignore

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

target/classes/.idea/compiler.xml

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="CompilerConfiguration">
    <annotationProcessing>
      <profile name="Maven default annotation processors profile" enabled="true">
        <sourceOutputDir name="target/generated-sources/annotations" />
        <sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
        <outputRelativeToContentRoot value="true" />
        <module name="group8" />
      </profile>
    </annotationProcessing>
  </component>
</project>
 No newline at end of file
+0 −7
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="Encoding">
    <file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
    <file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
  </component>
</project>
 No newline at end of file
Loading