Commit 197296f3 authored by Nafis A Abeer's avatar Nafis A Abeer
Browse files

updated pom

parent c72d8b4d
Loading
Loading
Loading
Loading
(6 KiB)

File changed.

No diff preview for this file type.

+15 −3
Original line number Diff line number Diff line
@@ -12,9 +12,8 @@
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!-- <exec.mainClass>top.BackendJava</exec.mainClass> -->
        <exec.mainClass>top.BackendJava</exec.mainClass>
        <!-- <exec.mainClass>yolo.YOLODetector</exec.mainClass> -->
        <exec.mainClass>vid2frames.Vid2Frames</exec.mainClass>
    </properties>

    <build>
@@ -97,6 +96,20 @@
            <artifactId>javacpp</artifactId>
            <version>1.5.7</version>
        </dependency>
        <dependency>
            <groupId>com.opencsv</groupId>
            <artifactId>opencsv</artifactId>
            <version>5.7.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.ejml/ejml-all -->
        <dependency>
            <groupId>org.ejml</groupId>
            <artifactId>ejml-all</artifactId>
            <version>0.41</version>
        </dependency>




        <!-- Spring Boot Starter Test -->
        <dependency>
@@ -112,6 +125,5 @@
            </exclusions>
        </dependency>


    </dependencies>
</project>
+10 KiB

File added.

No diff preview for this file type.

+15 −0
Original line number Diff line number Diff line

# Entry into System

Things that are true:
1. A student should be able to build the system, then press run, then open a localhost and see the video and the point cloud of each object
2. A student should also be able to choose between different object and get information (need interactive display)
3. The entry needs to do the entire workflow
    - get keyframes and featurepoints
    - get objects from keyframes
    - start object detection
    - finish object detection and update database
    - ping GUI server
    - GUI server pulls information and displays point cloud to user

TODO: function to process each frame within the ObjectSet
 No newline at end of file
+0 −2
Original line number Diff line number Diff line
server.port = 5555
#spring.data.mongodb.uri = mongodb+srv://zanem:<YXQiSFkSVqxPTs3M>@cluster0.axhv9kg.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0
 No newline at end of file
Loading