<?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>MBDT for VISION中的主题 How To Detect Pedestrians with NXP Vision Toolbox</title>
    <link>https://community.nxp.com/t5/MBDT-for-VISION/How-To-Detect-Pedestrians-with-NXP-Vision-Toolbox/m-p/803068#M22</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;H1 class="" style="color: #d55000; font-weight: normal; font-size: 22px; margin: 3px 10px 15px 4px;"&gt;&lt;SPAN class=""&gt;Pedestrian detection&lt;/SPAN&gt;&lt;/H1&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px; text-align: justify;"&gt;&lt;SPAN class=""&gt;The following livescript uses MATLAB functionalities to simulate the pedestrian detection application. The pedestrian detection algorithm is implemented using Histogram of Oriented Gradients (HOG) and a linear Support Vector Machine (SVM).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt; &lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Create a People Detector object with general Classification Model.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border: 1px solid #e9e9e9; padding: 5px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;detector = vision.PeopleDetector(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'ClassificationModel'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'UprightPeople_96x48'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'ClassificationThreshold'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, 2.5);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt; &lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Read the input image which can be RGB or grayscale.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-top: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 5px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;inImgUMat = nxpvt.imread(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'data/img_sdk.png'&lt;/SPAN&gt;&lt;SPAN class=""&gt;);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;if &lt;/SPAN&gt;&lt;SPAN class=""&gt;isempty(inImgUMat)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; fprintf(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'Failed to open input image: %s.'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, inImgPath);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;&amp;nbsp; &amp;nbsp; return&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;end&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-bottom: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;nxpvt.imshow(inImgUMat);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #404040; background: white; font-size: 14px; padding: 10px 0px 6px 17px;"&gt;&lt;DIV class="" data-testid="output_0" style="color: #404040; font-size: 12px;"&gt;&lt;DIV class="" style="color: #404040; font-size: 12px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62159i2B9E2D46FE6A731D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;If the input image if RGB transform if to grayscale.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-top: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 5px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;inImgUMatGray = nxpvt.apexcv.rgb2gray(inImgUMat);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-bottom: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;nxpvt.imshow(inImgUMatGray);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #404040; background: white; font-size: 14px; padding: 10px 0px 6px 17px;"&gt;&lt;DIV class="" data-testid="output_1" style="color: #404040; font-size: 12px;"&gt;&lt;DIV class="" style="color: #404040; font-size: 12px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_4.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62160iEDF846B9FFD4DE56/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Run the pedestrian detector on the grayscale image.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border: 1px solid #e9e9e9; padding: 5px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;bboxes = step(detector, inImgUMatGray.getData());&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt; &lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Add the resulted information on the original image.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-top: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 5px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;outImgUMat = nxpvt.cv.rectangle(inImgUMat, bboxes, [255, 0 ,0], 5);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-bottom: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;nxpvt.imshow(outImgUMat);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #404040; background: white; font-size: 14px; padding: 10px 0px 6px 17px;"&gt;&lt;DIV class="" data-testid="output_2" style="color: #404040; font-size: 12px;"&gt;&lt;DIV class="" style="color: #404040; font-size: 12px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62161i968F1494D1B99847/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jun 2018 17:32:47 GMT</pubDate>
    <dc:creator>Daniel_Popa</dc:creator>
    <dc:date>2018-06-20T17:32:47Z</dc:date>
    <item>
      <title>How To Detect Pedestrians with NXP Vision Toolbox</title>
      <link>https://community.nxp.com/t5/MBDT-for-VISION/How-To-Detect-Pedestrians-with-NXP-Vision-Toolbox/m-p/803068#M22</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;H1 class="" style="color: #d55000; font-weight: normal; font-size: 22px; margin: 3px 10px 15px 4px;"&gt;&lt;SPAN class=""&gt;Pedestrian detection&lt;/SPAN&gt;&lt;/H1&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px; text-align: justify;"&gt;&lt;SPAN class=""&gt;The following livescript uses MATLAB functionalities to simulate the pedestrian detection application. The pedestrian detection algorithm is implemented using Histogram of Oriented Gradients (HOG) and a linear Support Vector Machine (SVM).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt; &lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Create a People Detector object with general Classification Model.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border: 1px solid #e9e9e9; padding: 5px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;detector = vision.PeopleDetector(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'ClassificationModel'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'UprightPeople_96x48'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'ClassificationThreshold'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, 2.5);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt; &lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Read the input image which can be RGB or grayscale.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-top: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 5px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;inImgUMat = nxpvt.imread(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'data/img_sdk.png'&lt;/SPAN&gt;&lt;SPAN class=""&gt;);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;if &lt;/SPAN&gt;&lt;SPAN class=""&gt;isempty(inImgUMat)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; fprintf(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #a020f0;"&gt;'Failed to open input image: %s.'&lt;/SPAN&gt;&lt;SPAN class=""&gt;, inImgPath);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;&amp;nbsp; &amp;nbsp; return&lt;/SPAN&gt;&lt;SPAN class=""&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class="" style="color: #0000ff;"&gt;end&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-bottom: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;nxpvt.imshow(inImgUMat);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #404040; background: white; font-size: 14px; padding: 10px 0px 6px 17px;"&gt;&lt;DIV class="" data-testid="output_0" style="color: #404040; font-size: 12px;"&gt;&lt;DIV class="" style="color: #404040; font-size: 12px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62159i2B9E2D46FE6A731D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;If the input image if RGB transform if to grayscale.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-top: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 5px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;inImgUMatGray = nxpvt.apexcv.rgb2gray(inImgUMat);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-bottom: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;nxpvt.imshow(inImgUMatGray);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #404040; background: white; font-size: 14px; padding: 10px 0px 6px 17px;"&gt;&lt;DIV class="" data-testid="output_1" style="color: #404040; font-size: 12px;"&gt;&lt;DIV class="" style="color: #404040; font-size: 12px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_4.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62160iEDF846B9FFD4DE56/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Run the pedestrian detector on the grayscale image.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border: 1px solid #e9e9e9; padding: 5px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;bboxes = step(detector, inImgUMatGray.getData());&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt; &lt;/DIV&gt;&lt;DIV class="" style="color: #000000;"&gt;&lt;DIV class="" style="margin: 2px 10px 9px 4px;"&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Add the resulted information on the original image.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="" style="background-color: #f7f7f7; margin: 10px 0px;"&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-top: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 5px 0px 0px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;outImgUMat = nxpvt.cv.rectangle(inImgUMat, bboxes, [255, 0 ,0], 5);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class="" style="border-bottom: 1px solid #e9e9e9; border-left: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9; padding: 0px 0px 5px 10px;"&gt;&lt;SPAN class="" style="font-family: 'courier new', courier, monospace;"&gt;&lt;SPAN class=""&gt;nxpvt.imshow(outImgUMat);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="" style="color: #404040; background: white; font-size: 14px; padding: 10px 0px 6px 17px;"&gt;&lt;DIV class="" data-testid="output_2" style="color: #404040; font-size: 12px;"&gt;&lt;DIV class="" style="color: #404040; font-size: 12px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/62161i968F1494D1B99847/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2018 17:32:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MBDT-for-VISION/How-To-Detect-Pedestrians-with-NXP-Vision-Toolbox/m-p/803068#M22</guid>
      <dc:creator>Daniel_Popa</dc:creator>
      <dc:date>2018-06-20T17:32:47Z</dc:date>
    </item>
  </channel>
</rss>

