<?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: How to extract slanted data? in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65795#M18400</link>
    <description>Thank you!&lt;BR /&gt;&lt;BR /&gt;I will try to rotate the image in this way&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mark Alexandrovich&lt;BR /&gt;RPA Technical Leader&lt;BR /&gt;OCS Distribution&lt;BR /&gt;Moscow&lt;BR /&gt;+79166853117&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 01 Dec 2021 14:38:00 GMT</pubDate>
    <dc:creator>MarkAlexandrovi</dc:creator>
    <dc:date>2021-12-01T14:38:00Z</dc:date>
    <item>
      <title>How to extract slanted data?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65791#M18396</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I have a scan of passport. Most of the information is located horizontally, but passport's number is located vertically.&lt;BR /&gt;&lt;BR /&gt;I can extract all information manually:&lt;BR /&gt;1) Decipher extracts all horizontally information automatically&lt;BR /&gt;2) I make a copy, rotate it 90 degrees and merge original version with copy&lt;BR /&gt;3) I extract passport's number from copy manually&lt;BR /&gt;&lt;BR /&gt;How do I extract all data with Decipher automatically?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mark Alexandrovich&lt;BR /&gt;RPA Technical Leader&lt;BR /&gt;OCS Distribution&lt;BR /&gt;Moscow&lt;BR /&gt;+79166853117&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Nov 2021 15:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65791#M18396</guid>
      <dc:creator>MarkAlexandrovi</dc:creator>
      <dc:date>2021-11-30T15:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to extract slanted data?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65792#M18397</link>
      <description>Hi Mark,&lt;BR /&gt;&lt;BR /&gt;Unfortunately Decipher doesn't support differently orientated text at this time, but it would be a great addition!&lt;BR /&gt;&lt;BR /&gt;Please submit this via the Innovate button at the top of the page as a new idea. All submissions are reviewed by the Decipher manager and we look to get the best ideas into the future releases.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ben Lyons&lt;BR /&gt;Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;UK&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Dec 2021 11:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65792#M18397</guid>
      <dc:creator>Ben.Lyons1</dc:creator>
      <dc:date>2021-12-01T11:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to extract slanted data?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65793#M18398</link>
      <description>Hi Ben,&lt;BR /&gt;&lt;BR /&gt;Yes, I'm going to submit it.&lt;BR /&gt;&lt;BR /&gt;So I can extract horizontally information and then I can send the same page for extracting vertically information.&lt;BR /&gt;Ben, tell me, please, how I can rotate my pages in Decipher automatically or before Decipher with Blue Prism?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mark Alexandrovich&lt;BR /&gt;RPA Technical Leader&lt;BR /&gt;OCS Distribution&lt;BR /&gt;Moscow&lt;BR /&gt;+79166853117&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Dec 2021 12:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65793#M18398</guid>
      <dc:creator>MarkAlexandrovi</dc:creator>
      <dc:date>2021-12-01T12:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to extract slanted data?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65794#M18399</link>
      <description>&lt;P&gt;Hi Mark,&lt;BR /&gt;&lt;BR /&gt;There's nothing I can think of "out-of-the-box" but I've been able to find a simple VBO method you can try.&lt;/P&gt;
&lt;P&gt;So I added an action to the BP VBO "Utility - Image Manipulation". &lt;BR /&gt;&lt;BR /&gt;- I created 2 image based data items, effectively Input and Output. &lt;BR /&gt;- Upload your image to the input data item&lt;BR /&gt;- Create a code stage, with the Input as an input and the Output as an output&lt;BR /&gt;- Add the following to the code tab&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Dim bmp As Bitmap = New Bitmap(Input)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;bmp.RotateFlip(RotateFlipType.Rotate90FlipNone)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Output = bmp&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;You'll need to modify it to figure out how to get the image in and out, but it's the start of what could be a useful action.&lt;BR /&gt;&lt;BR /&gt;I got the info from &lt;A href="https://www.homeandlearn.co.uk/extras/image/image-rotation.html" target="test_blank"&gt;https://www.homeandlearn.co.uk/extras/image/image-rotation.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ben Lyons&lt;BR /&gt;Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;UK&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Dec 2021 13:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65794#M18399</guid>
      <dc:creator>Ben.Lyons1</dc:creator>
      <dc:date>2021-12-01T13:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to extract slanted data?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65795#M18400</link>
      <description>Thank you!&lt;BR /&gt;&lt;BR /&gt;I will try to rotate the image in this way&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mark Alexandrovich&lt;BR /&gt;RPA Technical Leader&lt;BR /&gt;OCS Distribution&lt;BR /&gt;Moscow&lt;BR /&gt;+79166853117&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Dec 2021 14:38:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-extract-slanted-data/m-p/65795#M18400</guid>
      <dc:creator>MarkAlexandrovi</dc:creator>
      <dc:date>2021-12-01T14:38:00Z</dc:date>
    </item>
  </channel>
</rss>

