Commit ce2b99c6 authored by Rohan  Kumar's avatar Rohan Kumar
Browse files

working

parent 493d3d2c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -58,8 +58,8 @@ public class ObjectSet {

        // 4) Now that we have a full list of candidate objects, we can do object resolution by combining candidates with overlapping points
        for(PointSet c : candidates){
            if(c.pset.size() > 100 && c.pset.size() < this.pointCloud.size()*0.75){
                this.reconcileCandidate(c, 0.7);
            if(c.pset.size() > 1000 && c.pset.size() < this.pointCloud.size()*0.75){
                this.reconcileCandidate(c, 0.5);
            }
        }

+2 −0
Original line number Diff line number Diff line
server.port = 5555
logging.level.org.springframework=OFF
logging.level.root=OFF
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
@@ -13,6 +13,11 @@ var highlighted = false;
async function render(event) {

    var dataset_name = renderForm.value;
    Plotly.purge('myDiv');
    objectSet = [];
    traces = [];
    meshes = [];
    highlighted = false;

    // start loading
    displayLoading();
+2 −1
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
logging.level.org.springframework=OFF
logging.level.root=OFF
 No newline at end of file
Loading