<?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 Person Tracking OpenVINO Python example syntax error in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502017#M29744</link>
    <description>&lt;P data-unlink="true"&gt;&amp;nbsp;I'm trying to run the Python person tracking&amp;nbsp;&lt;A href="https://docs.openvino.ai/2023.0/notebooks/407-person-tracking-with-output.html" target="_blank" rel="noopener"&gt;example&lt;/A&gt; from the OpenVINO website and I get a syntax error from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;! $download_command&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I put the whole line into quotes, there is no error. But then the script doesn't download the model files. How can I download the files for the example? The whole code until the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import collections
import sys
import time
import numpy as np
import cv2
#from IPython import display
import matplotlib.pyplot as plt
from openvino.runtime import Core
from Model import Model
#sys.path.append("../utils")
#import notebook_utils as utils
from deep_sort.deep_sort.tracker import Tracker
from deep_sort.deep_sort.nn_matching import NearestNeighborDistanceMetric
from deep_sort.deep_sort.detection import Detection

# A directory where the model will be downloaded.
base_model_dir = "Downloads"
precision = "FP16"
# The name of the model from Open Model Zoo
detection_model_name = "person-detection-0203"

download_command = f"omz_downloader " \
                   f"--name {detection_model_name} " \
                   f"--precisions {precision} " \
                   f"--output_dir {base_model_dir} " \
                   f"--cache_dir {base_model_dir}"
! $download_command

detection_model_path = f"Downloads/intel/{detection_model_name}/{precision}/{detection_model_name}.xml"

reidentification_model_name = "person-reidentification-retail-0277"

download_command = f"omz_downloader " \
                   f"--name {reidentification_model_name} " \
                   f"--precisions {precision} " \
                   f"--output_dir {base_model_dir} " \
                   f"--cache_dir {base_model_dir}"
! $download_command

reidentification_model_path = f"Downloads/intel/{reidentification_model_name}/{precision}/{reidentification_model_name}.xml"

detector = Model(detection_model_path)
# since the number of detection object is uncertain, the input batch size of reid model should be dynamic
extractor = Model(reidentification_model_path, -1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jul 2023 14:53:21 GMT</pubDate>
    <dc:creator>jvkloc</dc:creator>
    <dc:date>2023-07-05T14:53:21Z</dc:date>
    <item>
      <title>Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502017#M29744</link>
      <description>&lt;P data-unlink="true"&gt;&amp;nbsp;I'm trying to run the Python person tracking&amp;nbsp;&lt;A href="https://docs.openvino.ai/2023.0/notebooks/407-person-tracking-with-output.html" target="_blank" rel="noopener"&gt;example&lt;/A&gt; from the OpenVINO website and I get a syntax error from&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;! $download_command&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I put the whole line into quotes, there is no error. But then the script doesn't download the model files. How can I download the files for the example? The whole code until the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import collections
import sys
import time
import numpy as np
import cv2
#from IPython import display
import matplotlib.pyplot as plt
from openvino.runtime import Core
from Model import Model
#sys.path.append("../utils")
#import notebook_utils as utils
from deep_sort.deep_sort.tracker import Tracker
from deep_sort.deep_sort.nn_matching import NearestNeighborDistanceMetric
from deep_sort.deep_sort.detection import Detection

# A directory where the model will be downloaded.
base_model_dir = "Downloads"
precision = "FP16"
# The name of the model from Open Model Zoo
detection_model_name = "person-detection-0203"

download_command = f"omz_downloader " \
                   f"--name {detection_model_name} " \
                   f"--precisions {precision} " \
                   f"--output_dir {base_model_dir} " \
                   f"--cache_dir {base_model_dir}"
! $download_command

detection_model_path = f"Downloads/intel/{detection_model_name}/{precision}/{detection_model_name}.xml"

reidentification_model_name = "person-reidentification-retail-0277"

download_command = f"omz_downloader " \
                   f"--name {reidentification_model_name} " \
                   f"--precisions {precision} " \
                   f"--output_dir {base_model_dir} " \
                   f"--cache_dir {base_model_dir}"
! $download_command

reidentification_model_path = f"Downloads/intel/{reidentification_model_name}/{precision}/{reidentification_model_name}.xml"

detector = Model(detection_model_path)
# since the number of detection object is uncertain, the input batch size of reid model should be dynamic
extractor = Model(reidentification_model_path, -1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 14:53:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502017#M29744</guid>
      <dc:creator>jvkloc</dc:creator>
      <dc:date>2023-07-05T14:53:21Z</dc:date>
    </item>
    <item>
      <title>Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502182#M29745</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hi jvkloc,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Thank you for reaching out to us.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;For your information, the Python example is from our &lt;/SPAN&gt;&lt;A href="https://github.com/openvinotoolkit/openvino_notebooks" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;OpenVINO Notebook tutorials&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt;. Please install Jupyter Notebook following this &lt;/SPAN&gt;&lt;A href="https://github.com/openvinotoolkit/openvino_notebooks#-installation-guide" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;installation guide&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt; to run the tutorial.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Next, run the following command to start the &lt;/SPAN&gt;&lt;A href="https://github.com/openvinotoolkit/openvino_notebooks/tree/main/notebooks/407-person-tracking-webcam" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;407-person-tracking-webcam&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt; notebook:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: courier;"&gt;jupyter lab notebooks\407-person-tracking-webcam\407-person-tracking.ipynb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hope this helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hairul&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jul 2023 02:50:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502182#M29745</guid>
      <dc:creator>Hairul_Intel</dc:creator>
      <dc:date>2023-07-06T02:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502227#M29750</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply. My aim is to use person tracking as part of another program and Notebook is not an option. How can I download the model files for OpenVINO? I'm using Python 3.9 and Ubuntu 22.04.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 06:45:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502227#M29750</guid>
      <dc:creator>jvkloc</dc:creator>
      <dc:date>2023-07-06T06:45:39Z</dc:date>
    </item>
    <item>
      <title>Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502247#M29752</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hi jvkloc,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;The models used for the example are &lt;/SPAN&gt;&lt;A href="https://docs.openvino.ai/2023.0/omz_models_model_person_detection_0202.html" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;person-detection-0202&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt; and &lt;/SPAN&gt;&lt;A href="https://docs.openvino.ai/2023.0/omz_models_model_person_reidentification_retail_0287.html" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;person-reidentification-retail-0287&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt; which are mentioned in &lt;/SPAN&gt;&lt;A href="https://docs.openvino.ai/2023.0/notebooks/407-person-tracking-with-output.html#download-the-model" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;Download the Model&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt; section.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Install &lt;/SPAN&gt;&lt;A href="https://docs.openvino.ai/2023.0/openvino_docs_install_guides_install_dev_tools.html#installation-in-a-new-environment" rel="noopener noreferrer" target="_blank" style="font-size: 16px;"&gt;OpenVINO Development Tools&lt;/A&gt;&lt;SPAN style="font-size: 16px;"&gt; and run the following command in a terminal to download the respective models:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: courier;"&gt;omz_downloader --name person-detection-0202&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: courier;"&gt;omz_downloader --name person-reidentification-retail-0287&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hairul&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jul 2023 08:36:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502247#M29752</guid>
      <dc:creator>Hairul_Intel</dc:creator>
      <dc:date>2023-07-06T08:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502335#M29755</link>
      <description>&lt;P&gt;Great, thank you! I got the downloads to right folders but now line 42 of my code (in the first post)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;detector = Model(detection_model_path)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gives&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;builtins.RuntimeError: Check 'false' failed at C:\Jenkins\workspace\private-ci\ie\build-windows-vs2019\b\repos\openvino\src\inference\src\core.cpp:100:
Model file Downloads/intel/person-detection-0203/FP16/person-detection-0203.xml cannot be opened!&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;This is the example code of Model class up to the line 17 which causes the error above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;ie_core = Core()
class Model:
    """
    This class represents a OpenVINO model object.

    """
    def __init__(self, model_path, batchsize=1, device="AUTO"):
        """
        Initialize the model object

        Parameters
        ----------
        model_path: path of inference model
        batchsize: batch size of input data
        device: device used to run inference
        """
        self.model = ie_core.read_model(model=model_path)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;How can this be fixed?&lt;/P&gt;&lt;P&gt;EDIT: I have checked the files and folders, they're in the right place.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 14:43:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502335#M29755</guid>
      <dc:creator>jvkloc</dc:creator>
      <dc:date>2023-07-06T14:43:57Z</dc:date>
    </item>
    <item>
      <title>Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502600#M29769</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hi jvkloc,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Please provide the full script of your example to us so that we can investigate this issue further.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Furthermore, please share the list of your installed pip modules with us. Run the following command to print the list of installed modules:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: courier;"&gt;pip list&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hairul&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Jul 2023 07:43:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502600#M29769</guid>
      <dc:creator>Hairul_Intel</dc:creator>
      <dc:date>2023-07-07T07:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502603#M29770</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the pip list:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Package             Version
------------------- -----------
addict              2.4.0
asttokens           2.2.1
backcall            0.2.0
beautifulsoup4      4.12.2
certifi             2023.5.7
charset-normalizer  3.1.0
colorama            0.4.6
comm                0.1.3
contourpy           1.1.0
cycler              0.11.0
dearpygui           1.9.1
debugpy             1.6.7
decorator           5.1.1
defusedxml          0.7.1
executing           1.2.0
filelock            3.12.2
filterpy            1.4.5
fonttools           4.40.0
gdown               4.7.1
gitdb               4.0.10
GitPython           3.1.31
idna                3.4
importlib-metadata  6.7.0
importlib-resources 5.12.0
ipyfilechooser      0.6.0
ipykernel           6.23.3
ipython             8.14.0
ipywidgets          8.0.6
jedi                0.18.2
Jinja2              3.1.2
jstyleson           0.0.2
jupyter_client      8.3.0
jupyter_core        5.3.1
jupyterlab-widgets  3.0.7
kiwisolver          1.4.4
loguru              0.7.0
MarkupSafe          2.1.3
matplotlib          3.7.1
matplotlib-inline   0.1.6
motmetrics          1.4.0
motrackers          0.0.1
mpmath              1.3.0
nest-asyncio        1.5.6
networkx            2.8.8
numpy               1.23.1
opencv-python       4.8.0.74
openvino            2023.0.0
openvino-dev        2023.0.0
openvino-telemetry  2023.0.0
osc4py3             1.0.8
packaging           23.1
pandas              2.0.3
parso               0.8.3
pickleshare         0.7.5
Pillow              9.5.0
pip                 23.1.2
platformdirs        3.8.0
prompt-toolkit      3.0.38
psutil              5.9.5
pure-eval           0.2.2
Pygments            2.15.1
pyparsing           3.1.0
pyrealsense2        2.54.1.5217
PySocks             1.7.1
python-dateutil     2.8.2
pytz                2023.3
pywin32             306
PyYAML              6.0
pyzmq               25.1.0
requests            2.31.0
scipy               1.11.0
setuptools          56.0.0
six                 1.16.0
smmap               5.0.0
soupsieve           2.4.1
stack-data          0.6.2
sympy               1.12
texttable           1.6.7
torch               2.0.1
torchvision         0.15.2
tornado             6.3.2
tqdm                4.65.0
traitlets           5.9.0
typing_extensions   4.7.1
tzdata              2023.3
urllib3             2.0.3
wcwidth             0.2.6
widgetsnbextension  4.0.7
win32-setctime      1.1.0
xmltodict           0.13.0
xsensdeviceapi      2022.0.0
zipp                3.15.0&lt;/LI-CODE&gt;&lt;P&gt;The full script is already posted in this topic. The error is caused by line 42 of the script in the first post. Module class is in my previous post where I declared the error. Both of them are from the OpenVINO website example linked in the first post. I commented out the few Notebook - related imports.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 08:01:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1502603#M29770</guid>
      <dc:creator>jvkloc</dc:creator>
      <dc:date>2023-07-07T08:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1503479#M29784</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi jvkloc,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please ensure the location of the model folder are in the same directory as your sample script in the following configuration:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;/sample_script.py&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;/model&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-1 lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/intel&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-2 lia-indent-padding-left-60px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/person-detection-0202&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-3 lia-indent-padding-left-90px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/FP16&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-4 lia-indent-padding-left-120px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/person-detection-0202.xml&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-4 lia-indent-padding-left-120px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/person-detection-0202.bin&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-2 lia-indent-padding-left-60px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/person-reidentification-retail-0287&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-3 lia-indent-padding-left-90px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/FP16&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-4 lia-indent-padding-left-120px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/person-reidentification-retail-0287.xml&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="ql-indent-4 lia-indent-padding-left-120px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;--/person-reidentification-retail-0287.bin&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please note that the &lt;/SPAN&gt;&lt;A style="font-size: 16px;" href="https://docs.openvino.ai/2023.0/notebooks/407-person-tracking-with-output.html#download-the-model" target="_blank" rel="noopener noreferrer"&gt;Person Tracking with OpenVINO™&lt;/A&gt;&lt;SPAN&gt; code is written specifically for Jupyter Notebook and might not work correctly outside of a Jupyter Notebook environment.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I'd suggest for you to try out our &lt;/SPAN&gt;&lt;A style="font-size: 16px;" href="https://docs.openvino.ai/2023.0/omz_demos_multi_camera_multi_target_tracking_demo_python.html#doxid-omz-demos-multi-camera-multi-target-tracking-demo-python" target="_blank" rel="noopener noreferrer"&gt;Multi Camera Multi Target Python* Demo&lt;/A&gt;&lt;SPAN&gt; from &lt;/SPAN&gt;&lt;A style="font-size: 16px;" href="https://github.com/openvinotoolkit/open_model_zoo" target="_blank" rel="noopener noreferrer"&gt;Open Model Zoo&lt;/A&gt;&lt;SPAN&gt; which can also be used for person tracking and be ran directly from a terminal.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here is the command to run the Multi Camera Multi Target Python Demo:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;python multi_camera_multi_target_tracking_demo.py --m_detector person-detection-retail-0013.xml --m_reid person-reidentification-retail-0287.xml -i &amp;lt;input_sources&amp;gt; --config configs\person.py&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hairul&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 06:58:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1503479#M29784</guid>
      <dc:creator>Hairul_Intel</dc:creator>
      <dc:date>2023-07-11T06:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1504361#M29806</link>
      <description>&lt;P&gt;I added the extra folder (model) to the path just to be sure to get the same error. And I did get the same error. I'll try your example suggestion and post a new topic if I encounter problems with that. Thank you for your time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2023 08:15:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1504361#M29806</guid>
      <dc:creator>jvkloc</dc:creator>
      <dc:date>2023-07-13T08:15:56Z</dc:date>
    </item>
    <item>
      <title>Re:Person Tracking OpenVINO Python example syntax error</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1504634#M29809</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hi jvkloc,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Feel free to open up a new question if you face any issue and we'll be happy to assist you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;This thread will no longer be monitored since we have provided information.&amp;nbsp;If you need any additional information from Intel, please submit a new question.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px;"&gt;Hairul&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Jul 2023 01:44:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Person-Tracking-OpenVINO-Python-example-syntax-error/m-p/1504634#M29809</guid>
      <dc:creator>Hairul_Intel</dc:creator>
      <dc:date>2023-07-14T01:44:51Z</dc:date>
    </item>
  </channel>
</rss>

