<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help Needed: Visualizing Detected Objects on Oriented Imagery in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/help-needed-visualizing-detected-objects-on/m-p/1571293#M91507</link>
    <description>&lt;P&gt;To overlay detected objects onto 360° oriented imagery and streamline the process of identifying and removing noisy objects, you can use a custom implementation with &lt;A href="https://photo-sphere-viewer.js.org/" target="_new" rel="noopener"&gt;&lt;SPAN&gt;Photo&lt;/SPAN&gt;&lt;SPAN&gt; Sphere&lt;/SPAN&gt;&lt;SPAN&gt; Viewer&lt;/SPAN&gt;&lt;/A&gt;. This tool allows you to display markers, polygons, and other overlays directly on a 360° image.&lt;BR /&gt;&lt;A href="https://photo-sphere-viewer.js.org/demos/markers/polygon-pattern.html" target="_self"&gt;https://photo-sphere-viewer.js.org/demos/markers/polygon-pattern.html&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;Add Detected Objects as Markers&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Parse the GeoJSON to extract object positions and other details.&lt;/LI&gt;&lt;LI&gt;Add markers or polygons to the viewer using the coordinates of detected objects. Example code:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const viewer = new PhotoSphereViewer.Viewer({
    container: document.getElementById('viewer'),
    panorama: 'path/to/your/image.jpg', // Replace with your 360° image path
    plugins: [
        [PhotoSphereViewer.MarkersPlugin],
    ],
});

const markersPlugin = viewer.getPlugin(PhotoSphereViewer.MarkersPlugin);

// Example marker data
const detectedObjects = [
    { id: 'object1', longitude: 2.3, latitude: 1.1, label: 'Detected Object 1' },
    { id: 'object2', longitude: 2.5, latitude: 1.3, label: 'Detected Object 2' },
];

detectedObjects.forEach(obj =&amp;gt; {
    markersPlugin.addMarker({
        id: obj.id,
        longitude: obj.longitude,
        latitude: obj.latitude,
        tooltip: obj.label,
        color: 'rgba(255, 0, 0, 0.5)', // Red overlay for detection
    });
});
​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Dec 2024 09:22:41 GMT</pubDate>
    <dc:creator>SumitMishra_016</dc:creator>
    <dc:date>2024-12-26T09:22:41Z</dc:date>
    <item>
      <title>Help Needed: Visualizing Detected Objects on Oriented Imagery</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/help-needed-visualizing-detected-objects-on/m-p/1571237#M91504</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’ve been working with oriented imagery (360°) and have used the Oriented Imagery Viewer to explore it. Recently, I applied the "Detect Objects Using Deep Learning" tool with the &lt;STRONG&gt;Text SAM model&lt;/STRONG&gt; to detect objects within my imagery.&lt;/P&gt;&lt;P&gt;Now, I’d like to overlay the detected objects directly onto the imagery within the Oriented Imagery Viewer. My goal is to visually inspect the detected objects to identify and remove noisy or irrelevant ones.&lt;/P&gt;&lt;P&gt;Does anyone know how to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Display the detected objects on the oriented imagery?&lt;/LI&gt;&lt;LI&gt;Streamline the process for identifying and removing noise objects?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any tips, workflows, or tools that could help me accomplish this would be greatly appreciated!&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Dec 2024 16:29:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/help-needed-visualizing-detected-objects-on/m-p/1571237#M91504</guid>
      <dc:creator>Muhammad_Elbagoury</dc:creator>
      <dc:date>2024-12-25T16:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed: Visualizing Detected Objects on Oriented Imagery</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/help-needed-visualizing-detected-objects-on/m-p/1571293#M91507</link>
      <description>&lt;P&gt;To overlay detected objects onto 360° oriented imagery and streamline the process of identifying and removing noisy objects, you can use a custom implementation with &lt;A href="https://photo-sphere-viewer.js.org/" target="_new" rel="noopener"&gt;&lt;SPAN&gt;Photo&lt;/SPAN&gt;&lt;SPAN&gt; Sphere&lt;/SPAN&gt;&lt;SPAN&gt; Viewer&lt;/SPAN&gt;&lt;/A&gt;. This tool allows you to display markers, polygons, and other overlays directly on a 360° image.&lt;BR /&gt;&lt;A href="https://photo-sphere-viewer.js.org/demos/markers/polygon-pattern.html" target="_self"&gt;https://photo-sphere-viewer.js.org/demos/markers/polygon-pattern.html&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;Add Detected Objects as Markers&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Parse the GeoJSON to extract object positions and other details.&lt;/LI&gt;&lt;LI&gt;Add markers or polygons to the viewer using the coordinates of detected objects. Example code:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const viewer = new PhotoSphereViewer.Viewer({
    container: document.getElementById('viewer'),
    panorama: 'path/to/your/image.jpg', // Replace with your 360° image path
    plugins: [
        [PhotoSphereViewer.MarkersPlugin],
    ],
});

const markersPlugin = viewer.getPlugin(PhotoSphereViewer.MarkersPlugin);

// Example marker data
const detectedObjects = [
    { id: 'object1', longitude: 2.3, latitude: 1.1, label: 'Detected Object 1' },
    { id: 'object2', longitude: 2.5, latitude: 1.3, label: 'Detected Object 2' },
];

detectedObjects.forEach(obj =&amp;gt; {
    markersPlugin.addMarker({
        id: obj.id,
        longitude: obj.longitude,
        latitude: obj.latitude,
        tooltip: obj.label,
        color: 'rgba(255, 0, 0, 0.5)', // Red overlay for detection
    });
});
​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Dec 2024 09:22:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/help-needed-visualizing-detected-objects-on/m-p/1571293#M91507</guid>
      <dc:creator>SumitMishra_016</dc:creator>
      <dc:date>2024-12-26T09:22:41Z</dc:date>
    </item>
  </channel>
</rss>

