Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
10 years, 9 months ago.
Can LPC 1768 be used for image processing?
My project requires a microcontroller between camera for image processing and a zigbee for transmission.I have to dump image processing code(which is in matlab) and zigbee interfacing code in the microcontroller.Is LPC 1768 arm cortex m3 suitable for this purpose?
Question relating to:
1 Answer
10 years, 9 months ago.
It depends on how extensive your image processing code is. It can do basic image processing, see for example: http://mbed.org/users/ms523/notebook/eric-overview/. However it will quite fast run out of memory. And LPC4088 might be more suitable for it, since it has a LOT of memory.
I am using edge detection,dilation,filtering,enhancement and smoothing techniques . My code will require around 20 kb.So can i go for it?
posted by 18 Feb 2014Well you can always go for it, an advantage of mbed is also that if you eventually find out that it doesn't fit, you can always switch to the LPC4088 without too much issues.
If your code requires 20kB it should fit, the LPC1768 has 32kB, and another 32kB that is intended for ethernet/USB, but where you can manually place arrays. (See for example: https://mbed.org/forum/mbed/topic/579/?page=1#comment-23116)
posted by 18 Feb 2014