element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
NXP Semiconductors
  • Products
  • Manufacturers
  • NXP Semiconductors
  • More
  • Cancel
NXP Semiconductors
Forum Develop a stand alone image processing device
  • Blog
  • Forum
  • Documents
  • Events
  • Quiz
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join NXP Semiconductors to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 6 replies
  • Subscribers 41 subscribers
  • Views 1143 views
  • Users 0 members are here
  • microchip
  • microprocessor
  • fpga
  • stm32
  • raspberry pi
  • raspberry_pi_3b+
  • microcontroller
  • nxp
  • arm
  • pic32
Related

Develop a stand alone image processing device

roshan4544
roshan4544 over 5 years ago

Hi peeps,

 

I have created one device which reads qr code  and process the data  and gives result in display using Raspberry Pi. For me now challenge is I have to remove Raspberry Pi and should not use any other development boards. Instead of using development board I have to use any Microcontroller or Microprocessor or FPGA(no Idea) like I wanted to mount everything in a single PCB. So I'm requesting you people to suggest me a good Microcontroller or Microprocessor or FPGA which is equivalent to Raspberry PI

  • Sign in to reply
  • Cancel

Top Replies

  • michaelkellett
    michaelkellett over 5 years ago +1
    Since you already have something working you can define the resources it requires to run. This will enable you to select the least device to implement your design. FPGA s are not likely substitutes for…
  • michaelkellett
    michaelkellett over 5 years ago in reply to roshan4544 +1
    Sorry Roshan, that's nothing like enough information to work out what kind of processor you need: Using Python and openCV is a staggering inefficient way of decoding a bar code in terms of minimizing hardware…
  • ankur608
    ankur608 over 5 years ago +1
    Use ESP32 Cam, a 32bit MCU is enough for this task.
  • michaelkellett
    michaelkellett over 5 years ago

    Since you already have something working you can define the resources it requires to run. This will enable you to select the least device to implement your design. FPGA s are not likely substitutes for a Raspberry Pi, there are several micro-controllers with camera interfaces, lots of memory and significant processing capacity.

    What language Is your code written in ?

    Do you use library code and/or operating system services ?

     

    If you just use a processor which is similar to the Broadcom devices used on the PI you will end up with it costing more than a PI unless you are going to make millions of them.

     

    MK

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • roshan4544
    roshan4544 over 5 years ago in reply to michaelkellett

    Hi Micheal Kellett,

    Thank you for the reply, actually I don't have idea of minimum requirement. I'm using Raspberry Pi 3B+ in that using 640*480 resolution camera with 15fps frame rate. It runs smoothly.

     

    I'm using Python language along with openCV

     

     

     

     

     

     

     

    And open sources I can learn easily.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • michaelkellett
    michaelkellett over 5 years ago in reply to roshan4544

    Sorry Roshan, that's nothing like enough information to work out what kind of processor you need:

    Using Python and openCV is a staggering inefficient way of decoding a bar code in terms of minimizing hardware or processor cycles.

    It is not readily translatable to FPGA or custom logic.

     

    QR codes can be decoded on ARM Cortex M4 class processors:

     

    http://www.codeforge.com/article/463122

     

    MK

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • roshan4544
    roshan4544 over 5 years ago in reply to michaelkellett

    Hi, I forgot to inform you. The barcode is hidden information. Barcode is visible when some color filter is applied to camera. I actually get unclear image after filters. I have to enhance the image before reading it. So I'm gone for Raspberry Pi

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • ankur608
    ankur608 over 5 years ago

    Use ESP32 Cam, a 32bit MCU is enough for this task.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • roshan4544
    roshan4544 over 5 years ago

    I found solution.

    Actually I can do in Raspberry Pi Only with Raspberry Pi Compute Module

     

    https://www.instructables.com/id/Design-Your-Own-Raspberry-Pi-Compute-Module-PCB/

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube