Commit d2e0872c authored by Samuel John Gulinello's avatar Samuel John Gulinello Committed by Rohan Kumar
Browse files

Trying to merge

parent 18f449fd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -20,7 +20,8 @@
            <!-- Placeholder for image -->
        </div>
        <div class="objects-container" id="objectsContainer">
            <h4>Select An Object To View Point Cloud With That Object Highlighted</h4>
            <h4 style="margin: 0;">Select An Object To View Point Cloud With That Object Highlighted</h4>
            <p style="margin: 0;"><em>point cloud can be manipulated through rotate and zoom</em></p>
            <!-- Placeholder for Object List-->
        </div>
    </div>
+2 −1
Original line number Diff line number Diff line
@@ -18,7 +18,8 @@ function displayImageAndObjects(imageUrl, objects) {

    // Create an image element
    const imageElement = document.createElement('img');
    imageElement.src = imageUrl;
    console.log(imageUrl);
    imageElement.src = 'http://127.0.0.1:5000/' + imageUrl;
    imageElement.alt = 'Image';
    imageContainer.appendChild(imageElement);